For Example: While making a program that can add two numbers, you need the user input for the 2 numbers.
Python Provides the input() function for this task, Which can be written as.
input("Some text to show")
Here, instead of "Some text to show" you can write any text you want to show the user before the Input Area.
print("Hello World")
output: Hello World