



from math import sqrt
def LongueurCourbe(n):
p = 1/n
xA = 0
xB = xA + p
L = 0
for i in range(1, n+1):
yA = (xA - 1)**2
yB = (xB - 1)**2
L = L + ...
xA = xA + p
xB = xB + p
return L
Nos manuels sont collaboratifs, n'hésitez pas à nous en faire part.
j'ai une idée !
Oups, une coquille