摘要: task1_1.py x = list(range(10)) print('整数输出1: ', end = '') for i in x: print(i, end = ' ') print('\n整数输出2: ', end = '') for i in x: print(f'{i:02d}', e 阅读全文
posted @ 2021-04-17 14:34 年年有尼 阅读(15) 评论(0) 推荐(0)