# Paradigm ## OOP ```Python # OOP class Thing: ... def truc(self) -> None: ... ``` ## Procedural ```Python # Procedural class Thing: ... def truc(thing: Thing) -> None: ... ``` ## Fonctional ```Python class Thing: ... def truc(thing: Thing) -> Thing: ... return other_thing ``` --- Bibliography: - [Title - website.com](need bibliography)