3 lines
68 B
Python
3 lines
68 B
Python
|
def rectanglePerimeter(width, height):
|
||
|
return width*2 + height*2
|