Product of 2 integer numbers in Python
print() - Question 8
In this question, we will see how to print the product of 2 integer numbers in python programming using the print() function. To know more about print() function click on the print() function lesson.
Q8) Write a program in python to find the product of 2 integer numbers like a=4, b=8.
Program
a=4; b=8
print('Product={}'.format(a*b));
Output
Product=32