how to print input in python code example

Example 1: python get input

# Python 3

txt = input("Type something to test this out: ")

# Note that in version 3, the print() function
# requires the use of parenthesis.
print("Is this what you just said? ", txt)

Example 2: python input

# Learning input is very easy
# Just make a variable and then the input function
# then type what question do you want
running = True
mi = input('Are you a girl or a boy?')
# Use def to figure it out
l = mi
if l == 'boy' or l == 'Boy':
   	ui = 'boy'
elif l == 'girl' or l == 'Girl':
    ui = 'girl'
else:
    # Make sure if it is a something not in the if
    running = False
    print('huh?')
if running == True:
    mine = input('How old are you?')
    def v(u):
        n = int(u)
        if n > 3 and n < 11:
            print('Good', ui)
        else:
            print('Great.')
    # Remember to use the function
    v(mine)

Example 3: print input in python

# Take input from user and store it as a variable. E.g. I store the input as 'user_inp'
user_inp = input("Enter anything you want: ")

#Now you can print it by using print function
print("You entered ", user_inp)
# If you don't want "You entered " you can simply write as:- print(user_inp)

Example 4: python text input

name = input("Input message here")