Created
December 20, 2021 10:36
-
-
Save MayankPandey01/58f92afed2a7b6b567bc56f00a583dea 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
def check_permission(super_user): | |
try: | |
assert(super_user) | |
print("\nYou are a super user\n") | |
except AssertionError: | |
print(f"\nNot a Super User!!!\n") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment