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

Code answers related to "ways to take input from python"

Python Answers by Framework

Browse Popular Code Answers by Language