Comment importer quelque chose dans Python

import <module to import>

# alternitvly if you are trying to import something from the same folder as your pyhon file
import .<file name>

# if you wanna import something from a certain module
from <module name> import <something>
Zealous Zebra