user input python 3 code example
Example 1: python get input
txt = input("Type something to test this out: ")
print("Is this what you just said? ", txt)
Example 2: 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 3: python user input
input('ENter question here')
Example 4: python input function
answer = input('What is your name?')
Example 5: input python 3
answer = input("What is your name? ")
print(f"Your name is {answer}")
Example 6: user input python
input = input("Enter your value: ")
print(input)