how to use a function from python input code example
Example 1: python input
# The function 'input()' asks the user for input
myName = input()
Example 2: python text input
name = input("Input message here")
# The function 'input()' asks the user for input
myName = input()
name = input("Input message here")