Python edabit Challenge : Find the Perimeter of a Rectangle

preview_player
Показать описание
Create a function that takes height and width and finds the perimeter of a rectangle.

def find_perimeter(height, width):
return (height + width) * 2
Рекомендации по теме