我已经在这方面工作了很长时间,我的if语句似乎对代码没有任何影响。我想要做的是我想在列表中输入单词而不重复。
fname = raw_input("Enter file name: ")
fh = open(fname)
lst = list()
for line in fh:
line.rstrip()
words = line.split()
if lst.count(words) == 0:
lst = lst + words
lst.sort()
print lst