摘要: Task3: 1 def new_round(x): 2 if(x - int(x) <= 0.4): 3 x = int(x) 4 else: 5 x = int(x) + 1 6 return x 7 8 with open('实验5数据文件/data3.txt', 'r') as f: 9 d 阅读全文
posted @ 2022-05-11 19:55 注册好容易啊 阅读(40) 评论(4) 推荐(0) 编辑