multiply 2 numbers in python code example
Example 1: how to multiply in python
Multiply two integer numbers
num1=int(input("Enter the first number: "))
num2=int(input("Enter the second number: "))
mul=num1*num2;
print("the product of given numbers is: ",mul)
When the above code is compiled and executed, it produces the following results
Enter the first number: 23
Enter the second number is: 32
the product of the given numbers is 736
Example 2: 1. write a program to multiply two numbers using function python
def add_num(a,b):
multiply=a*b;
return multiply;
num1=int(input("input the number one: "))
num2=int(input("input the number one: "))
print("The product is",add_num(num1,num2))
Example 3: multiplication of two or more numbers in python
def multiple(*a):
result = 1
for i in a:
result = result * i
return result
res = multiple(12, 2, 5)
print(res)