摘要: 实验任务1 task1_1 程序源码 #task1_1 print输出的几种用法 #用法1:用于输出单个字符串或单个变量 print('hey, u') #用法2:用于输出多个数据项,用逗号分隔 print('hey','u') x,y,z = 1,2,3 print(x,y,z) #用法3:用于混 阅读全文
posted @ 2023-03-09 15:06 Praying7 阅读(31) 评论(1) 推荐(1) 编辑