how to take command line input in python code example
Example: input command in python shell
x = input("Input Your Name")
#lets say I input Bob
print(x)
#It should output Bob
x = input("Input Your Name")
#lets say I input Bob
print(x)
#It should output Bob