function take input of string 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)