Answers for "how to read 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
0

input in python

l=list(map(int,input().split()))
Posted by: Guest on June-27-2021

Code answers related to "how to read input from python"

Python Answers by Framework

Browse Popular Code Answers by Language