howto write an input program in python\ code example
Example 1: python input
# The function 'input()' asks the user for input
myName = input()
Example 2: how to receive input from user in python
var = input("text: ")
# The function 'input()' asks the user for input
myName = input()
var = input("text: ")