Advertisements
Advertisements
Question
Write a Python function that displays all the words containing @cmail from a text file "Emails.txt".
Correct and Rewrite
Solution
def show():
f=open("Email.txt",'r')
data=f.read()
words=data.split()
for word in words:
if '@cmail' in word:
print(word,end=' ')
f.close()
shaalaa.com
Is there an error in this question or solution?