c4zoom2.py

Created by manuel-eleve-tle-techno-indice2020

Created on May 11, 2020

166 Bytes


def pacs(M):

    a=0.07; b=1.54

    x=6

    y=a*x+b

    L=[]

    while y <= M:

        x=x+1

        y=a*x+b

        L.append(y)

    return(L)