Skip to main content

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

NameTypeDescription
xnumberThe first numeric factor in the multiplication operation
ynumberThe second numeric factor in the multiplication operation

Returns

TypeDescription
numberThe result of multiplying the two input values