how to print input in python 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: python input
running = True
mi = input('Are you a girl or a boy?')
l = mi
if l == 'boy' or l == 'Boy':
ui = 'boy'
elif l == 'girl' or l == 'Girl':
ui = 'girl'
else:
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.')
v(mine)
Example 3: print input in python
user_inp = input("Enter anything you want: ")
print("You entered ", user_inp)
Example 4: python text input
name = input("Input message here")