笔记-python tutorial-9.classes 1. Classes 1.1. scopes and namespaces namespace: A namespace is a mapping from names to objects. 典型的命名空间有:built-in names;the global names in a module; the local names in a function. 两个命名空间中的名称之间没有任何关系,例如两个模块可以都定义一…
Guide to Python introspection https://www.ibm.com/developerworks/library/l-pyint/ Guide to Python introspection How to spy on your Python objects Published on December 01, 2002 What is introspection? In everyday life, introspection is the act of…