Python Multiply -Funktion mit Rückgabe -Schlüsselwort

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