Python mnożyć funkcję z słowem kluczowym zwracającym

def multiplyNum(num1):
    return num1 * 8
result = multiplyNum(8)
print(result)
Bright Bison