how to make input in python code example
Example 1: input in python
name = input("What is your name?\n")
print("You said your name was " + name)
number = int(input("Please select a random number:\n"))
Example 2: how to get user inout in python
test = input()
test = input("Please enter your information: ")
test = int(input("Please enter your information: "))
Example 3: input in python
name = input('What is your name')
print('Hello'+ name + ' !')
Example 4: how to use inputs in python
YourInout = input("your text input")
print(YourInput)