importer un module en python
import module_name
alimehridev
import module_name
>>> import example
# importing a module
import math
# using the sqrt() function of the math module
print("Square root of 16:", math.sqrt(16))