Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
 
PREVIOUS NEXT
Tagged: #multiply #inputs #python
ADD COMMENT
Topic
Name
9+1 =