摘要: 1 #1. 把一个数字的list从小到大排序,然后写入文件,然后从文件中读取出来文件内容,然后反序,在追加到文件的下一行中 2 3 4 a=[1,234,5,7,8,9,5,343] 5 a.sort() 6 with open('11.txt', 'w')as f1: 7 f1.write(str(a)) 8 print(a) 9 a.reverse() ... 阅读全文
posted @ 2017-11-01 01:55 依哈 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 1、文件读取 在python中通过read()来读取文件内容并返回为字符串 1 #打开文件步骤: 2 #1、open打开文件 3 #2、对打开文件进行文件操作(读\写) 4 #、close关闭文件 5 import codecs 6 7 f=codecs.open('text1') 8 #codec 阅读全文
posted @ 2017-11-01 01:03 依哈 阅读(129) 评论(0) 推荐(0) 编辑