1. list = [] 2. with open('gym.txt', 'r') as f: 3. for line in f: 4. list.append(line.strip()) 5. 6. with open("gym_done.txt", "w") as f: 7. for item in sorted(list): 8. f.writelines(item) 9. f.writelines('\n') 10. f.close()
大致的思想就是建立一个列表;
然后将txt文件打开;
按行读取;
之后存入列表中;
再打开一个我们需要保存的文件;
用python自带的排序算法对其排序;
按行写入;
关闭文件。