Multiplication Operator

Python * operator is the multiplication operator. It is used to find the product of 2 values.

Python
val1 = 2
val2 = 3

# using the multiplication operator
res = val1 * val2
print(res)

Output : 

6

Python Arithmetic Operators

The Python operators are fundamental for performing mathematical calculations in programming languages like Python, Java, C++, and many others. Arithmetic operators are symbols used to perform mathematical operations on numerical values. In most programming languages, arithmetic operators include addition (+), subtraction (-), multiplication (*), division (/), and modulus (%).

Similar Reads

Arithmetic Operators in Python

There are 7 arithmetic operators in Python. The lists are given below:...

Addition Operator

In Python, + is the addition operator. It is used to add 2 values....

Subtraction Operator

In Python, – is the subtraction operator. It is used to subtract the second value from the first value....

Multiplication Operator

Python * operator is the multiplication operator. It is used to find the product of 2 values....

Division Operator

Python // operator is the division operator. It is used to find the quotient when the first operand is divided by the second....

Floor Division Operator

The // in Python is used to conduct the floor division. It is used to find the floor of the quotient when the first operand is divided by the second....

Modulus Operator

The % in Python is the modulus operator. It is used to find the remainder when the first operand is divided by the second....

Exponentiation Operator

In Python, ** is the exponentiation operator. It is used to raise the first operand to the power of the second....