python input function
answer = input('What is your name?')
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)
python input
# use the function input()
# the parameter is something that would
# output on the screen before the input
name = input('What is your name?')
print('Hello ' + name)
input function python
make_a_variable_name = input("Put whatever question, or prompt as Python calls it, that the person will answer here.")
input
# Python program to illustrate
# getting input from user
name = input("Enter your name: ")
# user entered the name 'harssh'
print("hello", name)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us