Skip to content

Conversation

@m-arnab
Copy link

@m-arnab m-arnab commented Apr 24, 2021

fname = input("Enter file name: ")
fh = open(fname,"r")
lst = list()
wrds=list()
count=0
for line in fh:
line=line.strip()
wds=line.split()
lst.append(wds)
wrds=lst[count]+wrds
count+=1
wrds.sort()
mylist = list(dict.fromkeys(wrds))
print(mylist)

@m-arnab
Copy link
Author

m-arnab commented Apr 24, 2021

Please review my approach.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants