-1
在我的線上代碼我不知道爲什麼它是錯誤的我嘗試了巨大的不同方式,但他們不工作。我希望它打印出來:第6行輸入錯誤?
['Arise', 'But', 'It', 'Juliet', 'Who', 'already', 'and', 'breaks', 'east', 'envious', 'fair', 'grief', 'is', 'kill', 'light', 'moon', 'pale', 'sick', 'soft', 'sun', 'the', 'through', 'what', 'window', 'with', 'yonder']
romeo.txt是文本文檔名稱 這是什麼裏面:
「但軟打破它是通過窗戶那邊什麼光東, 朱麗葉是日頭出現美麗的太陽,殺死羨慕月亮誰是 已經面色慘白同悲「
而且輸出是按字母順序。
fname = "romeo.txt"#raw_input("Enter file name: ")
fh = open(fname)
lst = list()
for line in fh:
lst.append(line)
words = lst.split(line)
# line = line.sort()
print lst
@折速謝謝 –