Answer to Question #304739 in Python for asahi

Question #304739

The first line will contain a message prompt to input the text message.

The second line will contain the number of vowels found in the text message.






1
Expert's answer
2022-03-02T08:20:37-0500


def Check_Vow(string, vowels):
	final = [each for each in string if each in vowels]
	print(len(final))
	print(final)
	
#here add your text
string = "Geeks for Geeks"
vowels = "AaEeIiOoUu"
Check_Vow(string, vowels);

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS