2022年4月11日
摘要: 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'{i:02d}',end='- 阅读全文
posted @ 2022-04-11 18:50 VolcanX 阅读(15) 评论(4) 推荐(0) 编辑