WAJP to input any character from user. Check and display wheather it is Vowel or Not Vovel
Answers
Answered by
1
is_vowel = lambda c: c in ["a", "e", "i", "o", "u"]
print(is_vowel((c := input("enter c: "))))
Answered by
0
Answer:
is_vowel = lambda c: c in ["a", "e", "i", "o", "u"]
print(is_vowel((c := input("enter c: "))))
Similar questions
Science,
2 months ago
Computer Science,
2 months ago
Math,
2 months ago
Psychology,
4 months ago
Computer Science,
4 months ago
English,
10 months ago
English,
10 months ago