Computer Science, asked by ragavielectronics438, 7 months ago

How to write the program for python to accept the string from user only vowels are present except "a"?

Answers

Answered by subzerogrand301
1

Answer:

a = input("enter the voewels except a")

require = ("e","i","o","u")

if a in require:

print("answer excepted")

else:

print("answer unexcepted")

Similar questions