码迷,mamicode.com
首页 > 编程语言 > 详细

Python中__all__的作用

时间:2021-06-04 18:49:33      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ret   python   exception   import   port   哪些   following   follow   highlight   

__all__ = [<string>]

它是一个string元素组成的list变量,定义了当你使用 from <module> import * 导入某个模块的时候能导出的符号(这里代表变量,函数,类等)。

其实就是代码保护,限定本模块中只有哪些能被import。

举例:foo.py

__all__ = [‘a‘, ‘b‘]

a = "a"
def b(): return ‘b‘
c = "c"

  现导入如下:

from foo import *

print a
print b

#The following will trigger an exception, as "c" is not exported by the module
print c

  

Python中__all__的作用

标签:ret   python   exception   import   port   哪些   following   follow   highlight   

原文地址:https://www.cnblogs.com/zukang/p/14846566.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!