advanced
globals()
always returns the dictionary of the module namespacelocals()
always returns a dictionary of the current namespace
print(locals()) will let you do some easy debugging (in fts, extra stuff in global namespace)
Last updated
globals()
always returns the dictionary of the module namespace
locals()
always returns a dictionary of the current namespace
print(locals()) will let you do some easy debugging (in fts, extra stuff in global namespace)
Last updated