Write a function to return the total surface area of a cuboid of length l, bredth b and height h
Topic: Write a function to return the total surface area of a cuboid of length l, bredth b and height h
Solution
def cal_surface_area_cuboid(l,b,h): return 2*(l*b+b*h+h*l)
List all Python Programs