Answers for "python input in"

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

function in the input function python

num = tuple(input("Enter number: "))
# output
print(num)
Posted by: Guest on March-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language