Created
December 17, 2020 03:18
-
-
Save Abhayparashar31/e5cbeecd67e3df12b2221e114fa3294b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| candidateage = 30 | |
| candidate_exp = 5 | |
| candidate_salary_expectation = 95000 | |
| ''' | |
| if candidateage>18: | |
| if candidate_exp>=2: | |
| if candidate_salary_expectation<=100000: | |
| print("Congrats ! You Are Eligible for the job") | |
| else: | |
| print("Not! eligible") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment