partie3_ex79.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

92 Bytes


def poly(a, b, c, d, x):
    return a * x**3 + b * x**2 + c * x + d == 0