Last active
July 20, 2020 16:13
-
-
Save AbishekSuryaRS/6105e6d1a92a72685bc225699b46dbfd to your computer and use it in GitHub Desktop.
This file contains 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
def function(n): | |
return n>10 | |
n = 12 | |
if(function(n)): | |
print("Eligible") | |
else: | |
print("Not Eligible") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment