csc-python-solutions/10/3 - Rectangle.py
2021-02-18 09:58:40 +01:00

3 lines
68 B
Python

def rectanglePerimeter(width, height):
return width*2 + height*2