测试
main(arg1=1)
Compute and return the product of two numbers.
Examples:
>>> multiply(4.0, 2.0)
8.0
>>> multiply(4, 2)
8.0
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
arg1 |
str
|
A number representing the multiplicand in the multiplication. |
1
|
b |
A number representing the multiplier in the multiplication. |
required |
Returns:
| Type | Description |
|---|---|
|
A number representing the product of |
Source code in src/example.py
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | |