當前位置:成語大全網 - 新華字典 - python 讀取文件 給數字排序

python 讀取文件 給數字排序

文件這樣子:

代碼:

fl = open('luciatest1.txt')

l = []

sortedl = []

for lines in fl.readlines():

lines = lines.replace("\n", "")

l.append(lines)

print('\n', 'the original file is:', l)

sortedl = sorted(l)

print('\n', 'the sorted file is:', sortedl)

運行結果: