+ 3
What does this not work?
3 Antworten
+ 15
The problem in your code is line 7. You have to add brackets like this:
x = i.lower()
But I recommend you to put line 5 and 7 together to one line like this:
x = input().lower()
I hope this helps.
+ 15
No problem
+ 3
Thanks!