1
0
mirror of https://github.com/bregman-arie/devops-exercises.git synced 2024-11-24 08:22:12 +02:00
This commit is contained in:
abregman 2020-07-03 14:13:30 +03:00
commit 604cd75011

View File

@ -4708,7 +4708,7 @@ The reason is that the two created empty list are different objects. `x is y` on
```
char = input("Insert a character: ")
if char == "a" or char == "y" or char == "o" or char == "e" or char =="u" or char == "i":
if char == "a" or char == "o" or char == "e" or char =="u" or char == "i":
print("It's a vowel!")
```
</summary><br><b>