Computer Science, asked by harsimrankhindathegr, 9 months ago

write a program to print the vowels in a string(not to count the number of strings)
for example in string computer,the vowels are O,U,E....

Answers

Answered by Anonymous
4

Answer:

Hi..

Explanation:

Hope it helps you

Please mark brainliest

Attachments:
Answered by moshnetic
0

Answer:

x=""

while x!=str(0):

x=input("Enter text , \"0\" to exit : ")

if "A" in x:

 print("A")

if "E" in x:

 print("E")

if "I" in x:

 print("I")

if "O" in x:

 print("O")

if "U" in x:

 print("U")

if "a" in x:

 print("a")

if "e" in x:

 print("e")

if "i" in x:

 print("i")

if "o" in x:

 print("o")

if "u" in x:

 print("u")

This is a python program

Run it in your command line'

Thank you :)

Similar questions