Instruction de retour Python (fonction d'écriture et d'appel)

def addition(a,b):
    return (a+b)
    
x = addition(3,7)
print(x)
Outrageous Ostrich