Peter
0
Q:

input python

#Collecting The Input As A Variable:#
name = input('Please enter your name: ')
#Printing The Variable:#
print(name)
#Checking The Variable And Printing Accordingly:#
if name == 'Joe':
  print('Joe Mama')
26
x = input()
# This will take you to shell where you input a value for x

print(x)
# Print's the value you typed

y = input('Enter a number: ')
# Will print 'Enter a number: ' to the shell and then wait for you
# to enter a value (Does not have to be a number)

# Copy the code and try it
3
name = input("What is your name?\n") # Asks the user 'What is your name?' and stores it in the 'name' variable

print("You said your name was " + name)

number = int(input("Please select a random number:\n")) # Will get input as a number
# Will error if the value entered is not a number

# You can use any type of conversion (int(), bool(), float(), etc.) to modify your input

4
name = input("Enter your name: ")

#Printing the variable (name)
print("hello",name)
4
#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)
8
#Input in python
name = input('What is your name')
print('Hello'+ name + ' !')
2
# The function 'input()' asks the user for input
myName = input()
16
# 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)
2
# Python program showing  
# a use of input() 
  
val = input("Enter your value: ") 
print(val) 
2
answer = input('What is your name?')
8

New to Communities?

Join the community