在 「test_wordss.txt」如何對文本文件中的單詞進行排序?
A
sentence
is
a
grammatical
unit
consisting
of
one
or
more
words
A
我的代碼:
for line2 in open('C://Users/Desktop/test_wordss.txt'):
fields2 = line2.rstrip('\n').split('\t')
print fields2.sort()
結果從我的代碼出來的無...
難道我做錯了什麼? 對文本文件中的單詞進行排序的任何建議?
[A有用鏈接](http://code.activestate.com/recipes/440612-sort-a-file/) –