function that asksfor a specific number from input 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: python input function
answer = input('What is your name?')