c2ex57.py

Created by manuel-eleve-tle-complementaire-indice2020

Created on July 09, 2020

146 Bytes


from math import*

def plant():

    t=0

    h=20

    while h<=30:

        t=t+1

        h=120/(5*exp(-0.08*t)+1)

    return(t)