Definition:
The Multiplication Operator (*) is used to multiply two values. These values are called operands.
It helps in performing mathematical calculations in programs or webpages.
Syntax:
result = left_operand * right_operand
Example:
a = 5
b = 4
mul_result = a * b
print("The multiplication is:", mul_result)
Output:
Exercise
Solve the Multiplication operator of both variables a=10 and b=5 using Python.
