Python input code code example
Example 1: python input
name = input('Please enter your name: ')
print(name)
if name == 'Joe':
print('Joe Mama')
Example 2: python get input
txt = input("Type something to test this out: ")
print("Is this what you just said? ", txt)
Example 3: python how to use input
x = input("your question here")
print(x)
Example 4: input python
name = input("Enter your name: ")
print("hello",name)
Example 5: 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 6: python read input
entered_input = input()