pdb list variable values code example
Example: 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.
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.