mul
Multiplies two numbers and returns the result as a Celery shared task.
def mul(
x: number,
y: number
) - > number
Calculates the product of two numbers as a Celery shared task.
Parameters
| Name | Type | Description |
|---|---|---|
| x | number | The first numeric factor in the multiplication operation |
| y | number | The second numeric factor in the multiplication operation |
Returns
| Type | Description |
|---|---|
number | The result of multiplying the two input values |