User input in Python programming are used to take input from user, input() is one of the commonly used function to take input from user and proceed with that value.
input("Enter a Key For Continue: ")
print("This is First Line")
input("Enter a Key Again For Continue: ")
print("This is Second Line")
input("Enter a Key For Exit: ")
print("Enter Ur Name: ")
val = input() #user enter value assigning to 'val'.
print("The Entered Name is: ", val) #and printing.
#you can also write like print("The Entered Name is: "+ val).
val = input("Enter Ur Name: ") #user enter value assigning to 'val'.
print("The Entered Name is: ", val) #and printing.
val = input("Enter Ur Name: ") #user enter value assigning to 'val'.
print("Hello "+ val +"!") #and printing.