Answers for "what happened to the 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
1

input python

name = input("What is your name: ")

print(name)

if name == "Jeff":
  print("My name Jeff")
Posted by: Guest on September-24-2021

Code answers related to "what happened to the input() function in python?"

Python Answers by Framework

Browse Popular Code Answers by Language