Input
At some point you are going to want to get some input from the user. To do this we ask the user a question and assign the answer to a variable.
In Python 3, you would use:
playerName = input("What is your name?")
but in Python 2.7 it was:
At some point you are going to want to get some input from the user. To do this we ask the user a question and assign the answer to a variable.
In Python 3, you would use:
playerName = input("What is your name?")
but in Python 2.7 it was: