from pakage_name.module_name import function_name
# now we can directly use function
################################## OR ########################################
from pakage_name import module_name
# now we have to use module_name.function_name
import module_name
# importing a module
import math
# using the sqrt() function of the math module
print("Square root of 16:", math.sqrt(16))
import Game.Level.start