Python uses the asterisk (*) operator for multiplication.
If any or all of the numbers being multiplied are floating point numbers, then the product will be a float.
- https://docs.python.org/3/library/operator.html#operator.mul
- https://docs.python.org/3/library/operator.html#mapping-operators-to-functions
- https://docs.python.org/3/library/stdtypes.html#numeric-types-int-float-complex
>>> 3 * 3
9
>>> 4.0 * 4
16.0
Instructions:
Change the 0 so that product will equal 80.