Types of Import

Package:python_core

Main_Import.py
val = __import__('python_core.Sample_Import')
val1 = __import__('python_core.Sample_Import_fun', globals(), locals(),['fun_1'])
val1.fun_1()

Sample_Import.py
print('Imported sample import.....')
x=12
y=13
print(x // y)
a = dict(one=1, two=2, three=3)
print(a)
b = {4:1}
print(b)

Sample_Import_fun.py
def fun_1():
print('Imported sample import fun.....')

One comment

Leave a Reply