Bonjour !
def distance(xa, ya, xb, yb):
AB = ( (xa-xb)**2 + (ya-yb)**2 )**0.5
print("la distance AB est :", AB)
Dans ce script, le ' **0.5 ' permet de calculer la racine carrée.
Bien sûr, tu peux faire :
from math import *
def distance(xa, ya, xb, yb):
AB = sqrt( (xa-xb)**2 + (ya-yb)**2 )
print("la distance AB est :", AB)
' sqrt ' pour square root, 'racine carrée' en anglais.