Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 202 Bytes

vowel_letters.md

File metadata and controls

9 lines (7 loc) · 202 Bytes

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!")