For Python 3.x, use input()
. For Python 2.x, use raw_input()
. Don’t forget you can add a prompt string in your input()
call to create one less print statement. input("GUESS THAT NUMBER!")
.
For Python 3.x, use input()
. For Python 2.x, use raw_input()
. Don’t forget you can add a prompt string in your input()
call to create one less print statement. input("GUESS THAT NUMBER!")
.