2022年4月12日

实验二

摘要: 任务一 task1.py 1 x = list(range(10)) 2 print('整数输出1: ', end = '') 3 for i in x: 4 print(i, end=' ') 5 print('\n整数输出2: ', end = '') 6 for i in x: 7 print 阅读全文
posted @ 2022-04-12 12:08 不太妙哈 阅读(24) 评论(3) 推荐(0) 编辑