Computer Science, asked by arya2005singh, 17 days ago

write a program
accept 10 names and print all the names which are not any vowel in it
ex ....Input :- bird fly and sky
output.... fly sky​

Answers

Answered by iemsmahjabinnisha
0

Answer:

Python Program that Extract words starting with Vowel From A list

Input : test_list = [“all”, “love”, “get”, “educated”, “by”, “gfg”]

Output : ['all', 'educated']

Explanation : a, e are vowels, hence words extracted.

Input : test_list = [“all”, “love”, “get”, “educated”, “by”, “agfg”]

Similar questions