taking console input in 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 receive input from user in python
var = input("text: ")
x = input("Input Your Name")
#lets say I input Bob
print(x)
#It should output Bob
var = input("text: ")