Learn about Python Program to Multiply Three Numbers in the below code example. Also, refer to the comments in the code snippet to get a detailed view about what’s actually happening.
Contents
Python Program to Multiply Three Numbers
# Program to multiply three numbers
a = 1
b = 2
c = 3
# calculate the product
product = a * b * c
# print result
print("The Product of Number:", product)
Output:
The Product of Number: 6
Hope above code works for you and Refer the below Related Codes to gain more insights. Happy coding and come back again.
Similar Code : Program to Multiply Two Numbers Without using Operator in Python