== Multiplication Operator == The multiplication operator represented by the star symbol, is used as a dyadic operator used to return the calculated product of two operands multiplied together: answer = 3 * 4 # 12 === Multiplication Combination Assignment Operator === The multiplication compound assignment operator represented by a starequals digraph, can also be used to perform a multiplication: value *= 3 # value = value * 3
Summary:
This change is a minor edit.
Username: