Write a function to return the area of a rectangle
Topic: Write a function to return the area of a rectangle
Solution
def cal_area_rect(length, breadth): return length*breadth
List all Python Programs
Solution
def cal_area_rect(length, breadth): return length*breadth