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:
StopIteration: iteration ended before completion, python
Implementing Bubble Sort Algorithm in Java
AttributeError: 'module' object has no attribute 'function_name'
Get LinkedIn skill assessments with Quiz Solver plugin
Project Java Build Form by multiple process
Using Dompdf: A Guide with Installation and Examples
SyntaxError: invalid syntax python
ImportError: No module named 'module_name'