python_wiki:main_program_loop

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
python_wiki:main_program_loop [2014/11/24 22:43]
billdozor
python_wiki:main_program_loop [2015/03/09 23:26]
billdozor
Line 1: Line 1:
 ====== Main Program Loop ====== ====== Main Program Loop ======
 +
 +**General Information**
 +
 This is an example of a main program loop, wrapped in a try command to catch keyboard interrupts. This is an example of a main program loop, wrapped in a try command to catch keyboard interrupts.
  
-Modules required: +**Checklist** 
-  * signal (keyboard interrupts)+  * Modules required: signal (keyboard interrupts) 
 + 
 +---- 
 +===== The Code =====
  
 <code python> <code python>
Line 28: Line 34:
     #trap keyboard interrupts (control+c), quit clean only     #trap keyboard interrupts (control+c), quit clean only
     except (KeyboardInterrupt):     except (KeyboardInterrupt):
-      input("\nPlease quit by entering \'q\' or \'quit\'! [Enter] to continue:")+      input("\nPlease quit by entering 'q' or 'quit'! [Enter] to continue:")
       continue       continue
   # END OF WHILE LOOP    # END OF WHILE LOOP
  • python_wiki/main_program_loop.txt
  • Last modified: 2019/05/25 23:50
  • (external edit)