| Name | * (multiply) |
||||
|---|---|---|---|---|---|
| Examples |
e = 50 * 5 # Sets 'e' to 250 f = e * 5 # Sets 'f' to 1250 | ||||
| Description | Multiplies the values of the two parameters. Multiplication is equivalent to a sequence of addition. For example 5 * 4 is equivalent to 5 + 5 + 5 + 5. | ||||
| Syntax | value1 * value2 | ||||
| Parameters |
| ||||
| Related |
+ (addition) / (divide) |
Updated on Tue Feb 27 14:07:12 2024.
If you see any errors or have comments, please let us know.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License