Repository of exercises for Module 9 of the Discovery Piscine at 42 (Python methods and dictionaries).
~/discovery_piscine/
└── module9/
├── ex00/
│ └── your_namebook.py
├── ex01/
│ └── family_affairs.py
├── ex02/
│ └── help_your_professor.py
├── ex03/
│ └── persons_of_interest.py| Exercise | Folder | File | Description |
|---|---|---|---|
| 00 | ex00/ | your_namebook.py |
Defines a method array_of_names that takes a dictionary of first and last names and returns an array of full names with capitalized first letters. |
| 01 | ex01/ | family_affairs.py |
Defines a method find_the_redheads that filters a dictionary of family members to return those with red hair. |
| 02 | ex02/ | help_your_professor.py |
Defines a method average that calculates the average of student scores from a dictionary. |
| 03 | ex03/ | persons_of_interest.py |
Defines a method famous_births that takes a dictionary of historical figures, sorts them by birth date, and prints each entry. |
| Exercise | Folder | Completed | Submitted | Validated |
|---|---|---|---|---|
| 00 | ex00 | ✅ Yes | ✅ Yes | ✅ Yes |
| 01 | ex01 | ✅ Yes | ✅ Yes | ✅ Yes |
| 02 | ex02 | ✅ Yes | ✅ Yes | ✅ Yes |
| 03 | ex03 | ✅ Yes | ✅ Yes | ✅ Yes |
This project is part of the learning process during the Discovery Piscine 42 and is submitted for educational purposes.
You may reuse the code for personal use or as reference.
Developed as part of the Python programming challenge during the Discovery Piscine 42.