Skip to content

Instantly share code, notes, and snippets.

@StoneLabs
Created May 7, 2020 13:40
Show Gist options
  • Save StoneLabs/b4aa76556db93d7fc83f39b7dba098d4 to your computer and use it in GitHub Desktop.
Save StoneLabs/b4aa76556db93d7fc83f39b7dba098d4 to your computer and use it in GitHub Desktop.
Priting all local python variables
[print("{:<30}{:<30}".format(key, str(val))) for key, val in locals().items() if "__" not in key]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment