filmov
tv
Python edabit Challenge : Find the Perimeter of a Rectangle
Показать описание
Create a function that takes height and width and finds the perimeter of a rectangle.
def find_perimeter(height, width):
return (height + width) * 2
def find_perimeter(height, width):
return (height + width) * 2