+ 2
Why does this not work?
5 ответов
+ 4
Ahem... input() is a built-in Python function that takes input from stdin. The issue is that you need to add a + between the string and random choice in the print function on the 6th technical line.
+ 2
Thanks!
+ 2
It's public
+ 1
Hey, can you make your code public (so I can comment)? There's an easier way to check for string equality, use:
if x.lower() == "rock":
# statements
in place of:
if x == "rock" or x == "Rock" or x == "rOck"...
- 2
How could I achieve more XPs?