Home » Backend » Python » * (multiplication)
This * (multiplication) arithmetic operator returns the product of the two expressions.
*
A * B
Here, A and B are called operands and '*' is a multiplication operator.
'*'
>>> 2 * 2 4 >>> 2 * 2.0 4.0 >>> 2.0 * 2 4.0