Bonsoir,
c = 8 #Variable globale.
def ima_fc1(x, y, z): #Attention c'est un tiret "_" et non un "-", ça ne fonctionnera jamais sinon, Python va essayer de soustraitre ima par fc1...
a = 2 #Variable locale.
b = 4 #Variable locale.
return a * x**3 + b * y**2 + c * z
Tu peux essayer en tapant par exemple:
ima_fc1(4, 8, 2)