Python.Lists

来源:互联网 发布:网络调试助手下载 编辑:程序博客网 时间:2024/06/06 00:32

Open the file romeo.txt and read it line by line. For each line, split the line into a list of words using the split() method. The program should build a list of words. For each word on each line check to see if the word is already in the list and if not append it to the list. When the program completes, sort and print the resulting words in alphabetical order.

You can download the sample data at http://www.pythonlearn.com/code/romeo.txt 


fname = raw_input("Enter file name: ")fh = open(fname)lst = list()for line in fh:     for word in line.split():          if word not in lst:               lst.append(word)               lst.sort()print lst

输出:

Enter file name: romeo.txt['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']


0 0