Skip to content

Instantly share code, notes, and snippets.

@arpitbbhayani
Created February 7, 2020 06:30
Show Gist options
  • Save arpitbbhayani/958bd468d1d5fe535408671d187d530d to your computer and use it in GitHub Desktop.
Save arpitbbhayani/958bd468d1d5fe535408671d187d530d to your computer and use it in GitHub Desktop.
@overload
def area(l, b):
return l * b
@overload
def area(r):
import math
return math.pi * r ** 2
>>> area(3, 4)
12
>>> area(7)
153.93804002589985
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment