Skip to content

Instantly share code, notes, and snippets.

@chiwanpark
Created October 15, 2013 19:27
Show Gist options
  • Save chiwanpark/6997265 to your computer and use it in GitHub Desktop.
Save chiwanpark/6997265 to your computer and use it in GitHub Desktop.
Keyboard Interrupt Example
while True:
try:
print "hi"
except KeyboardInterrupt:
print "bye"
import sys
sys.exit(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment