partie3_ex85.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

184 Bytes


def tanPar(a):
    d = 6 * a + 12
    if d == 0:
        return "tangente parallèle à l'axe (Ox)"
    else:
        return "tangente non parallèle à l'axe (Ox)"