Conversation

When you're debugging and use sys.exit() in Python but forget to import sys but the program exits anyway which is what you originally wanted. Traceback (most recent call last): File "./status.py", line 14, in <module> sys.exit() NameError: name 'sys' is not defined
5
30