其他分享
首页 > 其他分享> > 导入模块和包

导入模块和包

作者:互联网

一、导入模块三种写法

# import math
# print(math.sqrt(9)) #调用的时候模块名.方法名
# from math import sqrt
# print(sqrt(9)) #调用时方法名
from math import *
print(sqrt(16)) #调用时方法名

if __name__=='__main__':

all列表(只有all列表中的函数才能导入)
__all__= ['testA']
def testA():
print("testA")

def testB():
print('testB')

from  test import *
testA()
testB()

E:\python\python.exe C:/Users/Administrator/PycharmProjects/pythonProject/test/testDemo.py
testA
Traceback (most recent call last):
File "C:\Users\Administrator\PycharmProjects\pythonProject\test\testDemo.py", line 3, in <module>
testB()
NameError: name 'testB' is not defined. Did you mean: 'testA'?

二、导入包

(一)import包名.模块名
          包名.模块名.⽬目标

importmy_package.my_module1
my_package.my_module1.info_print1()

 

(二) 注意:必须在__init__.py⽂文件中添加__all__ = [],控制允许导⼊入的模块列列表。

from包名import*

模块名.⽬目标

 

标签:__,testA,导入,模块,testB,print,import
来源: https://www.cnblogs.com/dddzy/p/15743105.html