小編給大家分享一下python中all函數(shù)怎么用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
成都創(chuàng)新互聯(lián)公司專注于疏勒企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站開發(fā),成都做商城網(wǎng)站。疏勒網(wǎng)站建設(shè)公司,為疏勒等地區(qū)提供建站服務(wù)。全流程定制網(wǎng)站設(shè)計,專業(yè)設(shè)計,全程項目跟蹤,成都創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)實例內(nèi)容:Python代碼文件test.py如下
def _local_func(): print 'local' def test(): _local_func()
通過all函數(shù)來控制import *的導(dǎo)出范圍:
__all__ = ['test'] def _local_func(): print 'local' def test(): _local_func() def test1(): _local_func()
執(zhí)行結(jié)果如下:
>>> from test import * >>> test1() Traceback (most recent call last): File "", line 1, in NameError: name 'test1' is not defined >>> test() local >>>
以上是“python中all函數(shù)怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!