Answers for "how to take to input 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

how to get input from user in python

name = input("Enter your name: ")
print(f'Hello {name}')
Posted by: Guest on September-07-2021

Code answers related to "how to take to input python"

Python Answers by Framework

Browse Popular Code Answers by Language