ch01_parcours3_2_prof.py

Created by manuel-2de-indice2019

Created on October 11, 2019

147 Bytes


def coti2(R):
    if R<1000:
        C=0
    elif R<2000:
        C=0.05*R
    else:
        C=0.1*R-100
    return(C)