Answers for "how to calculate a input 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
0

Getting Input in Python

print("What is your name?")
name = input()
print(name)  # This will print out whatever the user typed
Posted by: Guest on October-17-2021

Code answers related to "how to calculate a input in python"

Python Answers by Framework

Browse Popular Code Answers by Language