thep2.py

Created by manuel-eleve-tle-complementaire-indice2020

Created on May 13, 2020

191 Bytes


from math import sqrt

def logBriggs(a):

    u=a;n=0

    while abs(u-1)>=0.001:

        u=...

        n=n+1

    u=u-1

    for k in range(...):

        u=...

    return(u)