python user input options code example
Example 1: python input function
answer = input('What is your name?')
Example 2: how to get a user input in python
a = input("what is your input")
Example 3: python user input
var = raw_input()
# OR
var = input()
""" raw_input can only be a string, but input can be a string,
integer, or variable. """
Example 4: python user input
user = input("yes, no\n")