Skip to content

Instantly share code, notes, and snippets.

@ahmedazizkhelifi
Created April 13, 2020 01:31
Show Gist options
  • Save ahmedazizkhelifi/d8c5bf1265bec6110d46f885c3282e78 to your computer and use it in GitHub Desktop.
Save ahmedazizkhelifi/d8c5bf1265bec6110d46f885c3282e78 to your computer and use it in GitHub Desktop.
def maxi(a,b):
return max(a,b)
print(maxi(1,2))
print(maxi(1,a)) #>> NameError: name 'a' is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment