csc-python-solutions/10/3 - Rectangle.py

3 lines
68 B
Python
Raw Normal View History

2021-02-18 08:58:40 +00:00
def rectanglePerimeter(width, height):
return width*2 + height*2