input in python is string code example
Example 1: accept user input in python
#Take Integer Value
nval=int(input("Enter a number : "))
#Take String Value
sval=input("Enter a string : ")
#Take float value
fval=float(input("Enter a floating-point number : "))
Example 2: input in python
#Input in python
name = input('What is your name')
print('Hello'+ name + ' !')