How to write the program for python to accept the string from user only vowels are present except "a"?
Answers
Answered by
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