Answers for "how to use inputs in python"

10

python how to use input

#basic user handling for begginers

x = input("your question here") # when someone types something here that answer will be saved and be used for later

# for example 
print(x)
Posted by: Guest on March-25-2020
1

how to get a user input in python

a = input("what is your input")
Posted by: Guest on July-09-2020
0

how to use inputs in python

# python 3.8

YourInout = input("your text input")

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

Code answers related to "how to use inputs in python"

Python Answers by Framework

Browse Popular Code Answers by Language