c2zooma.py

Created by manuel-eleve-tle-techno-indice2020

Created on May 11, 2020

113 Bytes


def grandeurA(L):

    m=1

    n=0

    while m<=L:

        m=10*m

        n=n+1

    return(n)