Skip to content

Instantly share code, notes, and snippets.

@DetachHead
Created January 30, 2023 03:14
Show Gist options
  • Save DetachHead/364c62a97c264bd8cafc7c49efe1afe3 to your computer and use it in GitHub Desktop.
Save DetachHead/364c62a97c264bd8cafc7c49efe1afe3 to your computer and use it in GitHub Desktop.
# a python repl that actually exits on ctrl+C
while True:
try:
code = input(">>> ")
try:
print(eval(code))
except SyntaxError:
exec(code)
except KeyboardInterrupt:
exit(1)
except BaseException as e:
print(e)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment