Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 168 Bytes

functions.md

File metadata and controls

9 lines (7 loc) · 168 Bytes

Advanced Functions

def area(height,width):
ans = height*width
print (ans)

area(2,3) #output = 6
area(4,2) #output = 8
area(2,5) #output = 10