Posts by Andre • 21 points
1 post
-
2
votes3
answers6745
viewsA: How to validate whether it is a vowel without writing all the letters of the alphabet
def vogal(x): if x == "a" or x == "e" or x == "i" or x == "o" or x == "u" or x== "A" or x == "E" or x == "I" or x == "O" or x == "U": return True else: return False…