c11commp.py

Created by manuel-eleve-tle-techno-indice2020

Created on May 15, 2020

129 Bytes


from math import*

def temps(seuil):

    T=0

    while(10-10*exp(-10*T)<seuil):

        T=T+0.1

    return(T)