input in pythono code example
Example 1: python input
# The function 'input()' asks the user for input
myName = input()
Example 2: python input function
answer = input('What is your name?')
# The function 'input()' asks the user for input
myName = input()
answer = input('What is your name?')