vowel_letters.md

April 9, 2022 ยท View on GitHub

Vowel Letters

  1. Improve the following code
char = input("Insert a character: ")
if char == "a" or char == "o" or char == "e" or char =="u" or char == "i":
    print("It's a vowel!")