Advertisements
Advertisements
प्रश्न
Write a Python function that displays all the words containing @cmail from a text file "Emails.txt".
वाक्य दुरुस्त करा आणि पुन्हा लिहा
उत्तर
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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?