如何查找所有Python内置私有变量,如__file __,_ ____
作者:互联网
我想知道所有Python内置的私有变量,例如__file __,__ ___,以及它们的用途.
但我没有在www.python.org上看到所有Python内置私有变量的文档.
我知道dir和vars.
那么,如何找到它们?
解决方法:
隐藏属性有时被称为魔术方法(对于对象),作为参考,我会查看Python docs on the data model,它们相当全面,可能涵盖了您要查找的所有属性.
在学习了隐藏属性之后,您可能知道要获取什么,但隐藏属性可能因实现而异,因此要将其抽象出来,请使用inspect模块:
import inspect
要获得大量信息:
inspect.getmembers(inspect)
要获取有关模块的文件和更多信息:
>>> inspect.getfile(inspect)
'/usr/lib/python2.7/inspect.pyc'
>>> inspect.getmoduleinfo(inspect.getfile(inspect))
ModuleInfo(name='inspect', suffix='.pyc', mode='rb', module_type=2)
标签:python,private,private-members,document,built-in 来源: https://codeday.me/bug/20190612/1225054.html