Advertisements
Advertisements
प्रश्न
Write a Python function that finds and displays all the words longer than 5 characters from a text file "Words.txt".
कोड लेखन
उत्तर
def display_long_words():
with open("Words.txt", 'r') as file:
data=file.read()
words=data.split()
for word in words:
if len(word)>5:
print(word,end=' ')
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?