Skip to content

Commit bb676c7

Browse files
committed
commit
1 parent 704c159 commit bb676c7

File tree

1 file changed

+6
-0
lines changed
  • exercises/03-Call-a-function

1 file changed

+6
-0
lines changed

exercises/03-Call-a-function/app.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,9 @@ def calculate_area(length, width):
22
return length * width
33

44
# Your code below this line
5+
6+
square_area1 = calculate_area(4, 4)
7+
8+
square_area2 = calculate_area(6, 7)
9+
10+
square_area3 = calculate_area(8, 4)

0 commit comments

Comments
 (0)