get input from command line python code example
Example 1: input command in python shell
x = input("Input Your Name")
#lets say I input Bob
print(x)
#It should output Bob
Example 2: how to get a user input in python
a = input("what is your input")
Example 3: inpuit inf terfminal ppython
userInput = input("This is a prompt for the input")
print userInput