user interactive input a file in python code example
Example 1: how to get a user input in python
a = input("what is your input")
Example 2: python keyboard input
# To get input from the user in python:
x = input("Optional prompt for input here")