1#Take Integer Value
2nval=int(input("Enter a number : "))
3#Take String Value
4sval=input("Enter a string : ")
5#Take float value
6fval=float(input("Enter a floating-point number : "))
1name = input("Enter your name: ")
2
3#Printing the variable (name)
4print("hello",name)
1# if you want to ask the user to input anything, use the keyword "input"
2
3# example
4
5a = input("What is your name") # the user will be prompted to answer the question
6
7print(a) # this allows the user to actaully see the question or anything