Created
April 13, 2020 01:30
-
-
Save ahmedazizkhelifi/f7b81b279f7bd81ca5aa519c9a8e043c 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) | |
import pdb | |
pdb.set_trace() | |
print(maxi(1,2)) | |
print(maxi(1,a)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment