python input terminal 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: input from terminal python
text = raw_input("prompt") # Python 2
text = input("prompt") # Python 3