fork download
  1. def __init__(self):
  2. self.title = 'Next career move'
  3. self.looking_fob_job = true
  4. self.not_interested_now = true
  5.  
  6. def _if_looking_for_job(self):
  7. if self.looking_for_job:
  8. self._apply_job(self, job_id)
  9. else:
  10. print('Thank you for looking at my email. Save my contact for future purposes. Have a good day J')
  11.  
  12. def _if_not_interested_now(self):
  13. if self.not_interested_now:
  14. print('Please refer someone whom you think can match your expertize')
  15. self._save_my_contact_info()
  16. else:
  17. # if mind change and wanted to apply
  18. self._if_looking_for_job()
  19.  
  20. def _save_my_conatct_info(Self):
  21. # contact info
  22. print('Jonathan – 651-792-5869 – jonkidde@amazon.com')
  23.  
  24. def _apply_for_job(self, job_id):
  25. # review job description here, click and respond
  26. print('Inset Job Description Link Here')
  27.  
Success #stdin #stdout 0.01s 7104KB
stdin
Standard input is empty
stdout
Standard output is empty