Skip to content

Instantly share code, notes, and snippets.

@rootcss
Created November 11, 2016 12:11
Show Gist options
  • Select an option

  • Save rootcss/a5eeaea39b01322ad47e62558c784816 to your computer and use it in GitHub Desktop.

Select an option

Save rootcss/a5eeaea39b01322ad47e62558c784816 to your computer and use it in GitHub Desktop.
Python debugger - similar to "pry" in ruby
import code
some_var = 100
code.interact(local=dict(globals(), **locals()))
print some_var
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment