Skip to content

Instantly share code, notes, and snippets.

@MayankPandey01
Created December 20, 2021 10:36
Show Gist options
  • Save MayankPandey01/58f92afed2a7b6b567bc56f00a583dea to your computer and use it in GitHub Desktop.
Save MayankPandey01/58f92afed2a7b6b567bc56f00a583dea to your computer and use it in GitHub Desktop.
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