what do you call the things you import into python code example
Example 1: import all from library python
from something import *
Example 2: python import
from time import sleep
# or import time
a = 10
sleep(4) # sleep function from time library
print(a)