Answers for "use 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
11

python input function

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

input in python

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
Posted by: Guest on October-01-2020
1

how to take input of something in python

name = input("What is your name? ") 
print("Hi, " + name)
Posted by: Guest on December-30-2019

Code answers related to "use input function in python"

Python Answers by Framework

Browse Popular Code Answers by Language