import MODULE_NAME
import module_name
from hello import *
# importing a module import math # using the sqrt() function of the math module print("Square root of 16:", math.sqrt(16))
>>> import example