This article describes Python user input. It means that the programmer can give input and according to that input Python will give output. For Python 3.6 and the above versions, the input() method is used. But for below 3.6 we use raw_input() method. The below example will show you how to add user input in Python.
Language= input("Enter language:")
print("language is: " + Language)
Language= raw_input("Enter language:")
print("language is: " + Language)
Python stops executing when it comes to the input()
function, and continues when the user has given some input.