Answers for "input() function in python"

93

python input

#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')
Posted by: Guest on August-09-2020
3

how to take input in python

# Taking string input
a = input("Enter a string: ")
print("String is: ", a)

# Taking integer input
b = int(input("Enter an integer: "))
print("Integer is: ", b)

# Taking float input
c = float(input("Enter a float value: "))
print("Float value is: ", c)
Posted by: Guest on October-01-2020
11

python input function

answer = input('What is your name?')
Posted by: Guest on April-24-2020
3

input in python

# First, let's start with a simple input function.
input("What's your name?: ") #This will ask you what is your name, and you can input anything you want.
#The above code is simple, and theres not much you can do with it.

# Let's get a little harder!
name = input("What is your name? ") # Just adding a variable doesn't look like much, but it goes a long way!
print("Hello," , name , ", I'm dad!") # THis will print Hello [your name] I'm dad when the user inputs a name.

# Let's make this a little more advanced!
name = input("What is your name? )
if name == "Dad": # Now if sombody inputs 'Dad' as there name:
	print("Hi dad I'm- wait a minute...") # it will say this
else: # If a user prints anything else:
	print("Hi" , name , "I'm dad!") # It will output this!

# What if I want to add multiple names? Well, that's entirly possible, with the elif statment
if name == "Dad": # If the user inputs "Dad" as their input:
	print("Hi Dad, I'm- stop trying to trick me D:<") # It will output this
elif name == "Doggo": # If the name is "Doggo":
	print("Hi doggo- wait your not supposed to talk?") # It will output this:
# Using the elif statment, we can make an entirley different with only one question asked
else:
	print("Hello, ", name, "!") # We always end an if statment with an else one.

# Hope this helped! :D
Posted by: Guest on December-24-2020
2

input in python

#Input in python
name = input('What is your name')
print('Hello'+ name + ' !')
Posted by: Guest on October-04-2020
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)
Posted by: Guest on October-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language