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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?