simple code with input python code example
Example 1: input in python
#Input in python
name = input('What is your name')
print('Hello'+ name + ' !')
Example 2: input python
name = input("Enter your name: ")
#Printing the variable (name)
print("hello",name)