fork(1) download
  1. Def __init__(self):
  2.  
  3. Self.title = ‘Next career move’
  4.  
  5. Self.looking_fob_job = true
  6.  
  7. Self.not_interested_now = true
  8.  
  9. Def _if_looking_for_job(self):
  10.  
  11. If self.looking_for_job:
  12.  
  13. Self._apply_job(self,job_id)
  14.  
  15. Else:
  16.  
  17. Print(‘Thank you for looking at my email. Save my contact for future purposes. Have a good day J ’)
  18.  
  19. Def _if_not_interested_now(self):
  20.  
  21. If self.not_interested_now:
  22.  
  23. Print(‘Please refer someone whom you think can match your expertize’)
  24.  
  25. Self._save_my_contact_info()
  26.  
  27. Else:
  28.  
  29. #if mind change and wanted to apply
  30.  
  31. Self._if_looking_for_job()
  32.  
  33.  
  34. Def _save_my_conatct_info(Self):
  35.  
  36. # contact info
  37.  
  38. Print (‘Jonathan – 651-792-5869 – jonkidde@amazon.com)
  39.  
  40.  
  41. Def _apply_for_job(self,job_id):
  42.  
  43. # review job description here, click and respond
  44.  
  45. Print(‘Inset Job Description Link Here”)
  46.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python2.7/py_compile.py", line 117, in compile
    raise py_exc
py_compile.PyCompileError:   File "prog.py", line 1
    Def __init__(self):
               ^
SyntaxError: invalid syntax

stdout
Standard output is empty