write a python program to display the words which start with a vowel from the file 'story.txt'.
Answers
Answered by
4
Answer:
def vowel(text):
vowels = "aeiuoAEIOU"
print(len([letter for letter in text if letter in vowels]))
print([letter for letter in text if letter in vowels])
vowel('w3resource');
Explanation:
Answered by
1
Answer:
go to apna tution on YouTube
Similar questions