幫助我,這是我當前的代碼按字母順序排序從一個文件在python 3.3
p=('class1.txt')
file=open(p,'r')
d=file.read()
print(d)
with open('Class1.txt', 'r') as f:
Class1=sorted(Class1.rstrip('\n') for Class1 in f)
print(Class1)
q=('class2.txt')
file=open(q,'r')
f=file.read()
print(f)
w=('class3.txt')
file=open(w,'r')
g=file.read()
print(g)
我試圖從名爲Class1.txt我也在努力,使其在最高到一個文本文件進行排序從數字最低
當前代碼有什麼問題?你有任何錯誤? – 2015-02-24 15:11:29
Class1.txt是什麼樣的? – Andy 2015-02-24 15:11:42