Computer Science, asked by aadityakunwar2002, 9 months ago

write a python program to display the words which start with a vowel from the file 'story.txt'.​

Answers

Answered by sk5634943
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 kanchankumari0201198
1

Answer:

go to apna tution on YouTube

Similar questions