python input a functiom code example
Example 1: function in the input function python
num = tuple(input("Enter number: "))
# output
print(num)
Example 2: input function python
make_a_variable_name = input("Put whatever question, or prompt as Python calls it, that the person will answer here.")