Skip to content

Instantly share code, notes, and snippets.

@stlehmann
Created May 6, 2014 15:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stlehmann/331e28d13a34efad956a to your computer and use it in GitHub Desktop.
Save stlehmann/331e28d13a34efad956a to your computer and use it in GitHub Desktop.
Execute a Python script from Python console
#Python2
execfile("./filename")
#Python3
exec(open("./filename").read())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment