Answers for "input in function 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
17

python input

# The function 'input()' asks the user for input
myName = input()
Posted by: Guest on February-21-2020
11

python input function

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

input python

name = input("Enter your name: ")

#Printing the variable (name)
print("hello",name)
Posted by: Guest on September-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language