您好,登錄后才能下訂單哦!
小編給大家分享一下python中all函數(shù)的使用方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
語法
all(iterable)
只采用一個參數(shù)
與any函數(shù)一樣,iterable-包含元素的任何可迭代
實例內(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 "<stdin>", line 1, in <module> NameError: name 'test1' is not defined >>> test() local >>>
以上是“python中all函數(shù)的使用方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。