()
| 73 | print '(4) Exit' |
| 74 | |
| 75 | def work_query(): |
| 76 | while True: |
| 77 | try: |
| 78 | select = int(raw_input('Select: ')) |
| 79 | if 0 < select < 5: |
| 80 | return select |
| 81 | else: |
| 82 | print 'ERROR: Selection Must Be Between 1 And 4' |
| 83 | except Exception, error: |
| 84 | if error.__class__ is EOFError: |
| 85 | |
| 86 | print 'ERROR: Selection Must Be A Number' |
| 87 | |
| 88 | def extract_bmp(data): |
| 89 | extract(data, True) |