摘要: task1.py 1 x = list(range(10)) 2 print('整数输出1: ', end = '') 3 for i in x: 4 print(i, end=' ') 5 6 print('\n整数输出2: ', end = '') 7 for i in x: 8 print(f 阅读全文