Fonction Python Multipliez-vous avec mot-clé de retour

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