Last active
August 8, 2020 06:48
-
-
Save som983/771ef577cb4031664a758851498a9565 to your computer and use it in GitHub Desktop.
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 alp…
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fname = input("Enter file name: ") | |
fh = open(fname) | |
lst = list() | |
for line in fh: | |
line=line.rstrip() | |
words=line.split() | |
for word in words: | |
if not word in lst: | |
lst.append(word) | |
else: | |
continue | |
lst.sort() | |
print(lst) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment