English

Write a Python function that displays all the words containing @cmail from a text file "Emails.txt". - Computer Science (Python)

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?
2024-2025 (March) Board Sample Paper
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×