python function taking input code example
Example 1: python how to use input
#basic user handling for begginers
x = input("your question here") # when someone types something here that answer will be saved and be used for later
# for example
print(x)
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: python functions with input
# to greet somebody with their name you do like the following
def greet(name):
print(f"Hello, {name} How do you do?")
greet("John Due") # you will get Hello, John Due How do you do?
# if you wanna get the input from the user you can do that too!
name = input("Please enter your name: ")
greet(name) # this takes the input from the user and then greets the user