Python匯入包的注意事項

wyfem發表於2021-09-11

Python匯入包的注意事項

本文教程操作環境:windows7系統、Python 3.9.1,DELL G3電腦。

1、使用注意

(1)只是匯入包不能隨便使用其中的模組,要匯入到具體模組或者變數的層次

(2)資料夾與檔案之間可以用.也可以用from import格式,而檔案與裡面的變數之間只能用from import格式,即不能import folder1.abcd.b

2、例項

>>> import folder1
>>> folder1.abcd.b
Traceback (most recent call last):  
File "<stdin>", line 1, in <module>
AttributeError: module 'folder1' has no attribute 'abcd'
>>> from folder1 import abcd
>>> bob = abcd.Myclass(name = 'Bob', age = 20)
>>> bob.name
'Bob'
>>> bob.get_info()my name is Bob and age is 20
>>> from folder1.abcd import b
>>> b
2
>>> import folder1.abcd
>>> abcd.bTraceback (most recent call last):  File "<stdin>", line 1, in <module>NameError: name 'abcd' is not defined
>>> folder1.abcd.b2
>>> import folder1.abcd as aa
>>> aa.b
2

以上就是Python匯入包的注意事項,希望能對大家有所幫助。更多Python學習指路:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2894/viewspace-2830516/,如需轉載,請註明出處,否則將追究法律責任。

相關文章