Description
KeyboardInterrupt is an error which occurs when a user interrupts a running program by pressing Ctrl+C. This error is specific for Python programs.
Reason of error
This error occurs when the user wants to terminate the program, but the program does not have the capability to terminate itself.
Example code
def main():
while True:
print("Hello World")
if __name__=="__main__":
main()
Solution to solve issue
To solve this issue, the program should be able to terminate itself. This can be done by using the try-except statement. This statement catches the KeyboardInterrupt error and allows the program to terminate itself.
Related Quiz:
OSError: [Errno 2] No such file or directory: 'file_name', in python
TypeError: 'int' object is not subscriptable, Python
ImportError: No module named 'module_name'
Wordpres plugin Advanced Quiz Post plugin
IndentationError: unexpected indent, python
MemoryError: out of memory, python
ZeroDivisionError: division by zero, python
AssertionError: assert condition, error_message, python