Write a function to find the permieter of a rectangle
Topic: Write a function to find the permieter of a rectangle
Solution
def rectangle_perimeter(l, b): return 2*(l+b)
List all Python Programs
Solution
def rectangle_perimeter(l, b): return 2*(l+b)