math
The module contains the following functions:
mul(a, b)
- Returns the product of two numbers.
mul(a, b)
Multiply two integers
Examples:
>>> mul(2, 3)
6
Parameters:
Name | Type | Description | Default |
---|---|---|---|
a |
int
|
First integer |
required |
b |
int
|
Second integer |
required |
Returns:
Name | Type | Description |
---|---|---|
int |
int
|
product of the two parameter integers |
Source code in pypoetry_template/math.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|