input as string in python code example
Example 1: python input
# The function 'input()' asks the user for input
myName = input()
Example 2: 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 3: input in python
#Input in python
name = input('What is your name')
print('Hello'+ name + ' !')