Answers for "pdb list variable values"

0

pdb list variable values

locals() and globals() will display all the variables in scope with their values.

You can use dir() if you're not interested in the values.
Posted by: Guest on January-23-2021

Browse Popular Code Answers by Language