<div><h2id="introspection"><ahref="#introspection"name="introspection">#</a>Introspection</h2><p><strong>Inspecting code at runtime.</strong></p><div><h3id="variables">Variables</h3><pre><codeclass="python language-python hljs"><list> = dir() <spanclass="hljs-comment"># Returns names of variables in current scope.</span>
<dict> = locals() <spanclass="hljs-comment"># Returns dict of local variables. Also vars().</span>
<dict> = globals() <spanclass="hljs-comment"># Returns dict of global variables.</span>
<div><h2id="introspection"><ahref="#introspection"name="introspection">#</a>Introspection</h2><p><strong>Inspecting code at runtime.</strong></p><div><h3id="variables">Variables</h3><pre><codeclass="python language-python hljs"><list> = dir() <spanclass="hljs-comment"># Returns names of variables in current scope.</span>
<dict> = locals() <spanclass="hljs-comment"># Returns dict of local variables. Also vars().</span>
<dict> = globals() <spanclass="hljs-comment"># Returns dict of global variables.</span>