Created
April 13, 2020 01:31
-
-
Save ahmedazizkhelifi/d8c5bf1265bec6110d46f885c3282e78 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 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