Create 3 - Rectangle.py

This commit is contained in:
Lukas Baumann 2021-02-18 09:58:40 +01:00 committed by GitHub
parent 305e721132
commit f65fd0709f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
10/3 - Rectangle.py Normal file
View File

@ -0,0 +1,2 @@
def rectanglePerimeter(width, height):
return width*2 + height*2