modify python exercise (#89)

* modify python exercise
This commit is contained in:
bassbone 2020-07-03 20:12:47 +09:00 committed by GitHub
parent a1099473cf
commit 9c327e5a6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4675,7 +4675,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>