Answers for "how does input() work 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
0

Getting Input in Python

print("What is your name?")
name = input()
print(name)  # This will print out whatever the user typed
Posted by: Guest on October-17-2021

Code answers related to "how does input() work in python"

Python Answers by Framework

Browse Popular Code Answers by Language