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

how to take input of something in python

name = input("What is your name? ") 
print("Hi, " + name)
Posted by: Guest on December-30-2019
0

input in python

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

how to use inputs in python

# python 3.8

YourInout = input("your text input")

print(YourInput)
Posted by: Guest on December-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language