Answers for "how can i multiply user input in python"

2

how to multiply inputs in python

x = input("give me the number you want to multiply")
y = input("give me the second number you want to multiply")


y = int(y)
x = int(x)


print (y * x)
Posted by: Guest on June-04-2020

Code answers related to "how can i multiply user input in python"

Python Answers by Framework

Browse Popular Code Answers by Language