Skip to content

Commit a158acb

Browse files
committed
add day 09 program
1 parent 0f000c8 commit a158acb

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

008-day/Program23.py

+8
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,11 @@ def getFullName(firstName, lastName):
2121
#This will reduce the error prone situations
2222
getFullName(firstName="Anu", lastName="Jose")
2323

24+
25+
#Below program for calculate the area of a wall
26+
27+
def getTheArea(height, width):
28+
return height * width
29+
30+
areaOfWall = getTheArea(5,6.5)
31+
print(f"Area of the wall is: {areaOfWall}")

009-day/Program24.py

Whitespace-only changes.

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,10 @@ To get started with this repository, clone the repository to your local machine
5555
<details>
5656
<summary>More about functions and parameter passing</summary>
5757
<a name="anchor"><a href="https://github.com/albin-joseph/python/tree/main/008-day">008-day</a>
58+
</details>
59+
60+
### Day 9
61+
<details>
62+
<summary>Dictionies and Nesting</summary>
63+
<a name="anchor"><a href="https://github.com/albin-joseph/python/tree/main/009-day">009-day</a>
5864
</details>

0 commit comments

Comments
 (0)