partie1_ex21.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

89 Bytes


def f(x):
    if x < 0:
        return -x
    else:
        return x