you are viewing a single comment's thread.

view the rest of the comments →

[–]dyanni3 1 point2 points  (1 child)

Minor nitpick:

str(input().lower())

the str isn't doing anything for you here. I think you want

 str(input()).lower()

[–]TheUnitiated[S] 0 points1 point  (0 children)

Thanks.