Your roadmap to take Python Institute exams with curated notes, practice questions, and code snippets!
This repository gathers all the notes that I am taking for the PCEP, PCAP and PCPP exams. The notes are intended to help programmers with knowledge to pass the certifications. Thas is, the notes highlights the most relevant concept and aspects of python without verbosity. Besides, the practice exam questions and code snippets focus on tips for the exam.
- Exam-Focused Notes: No verbosity, just key concepts for PCEP/PCAP (variables, loops, OOP, etc.).
- Practice Questions: Mock exams covering the study notes with collapsible solutions to practice.
- Structured Learning: Organized by certification level (
/PCEP
,/PCAP
,/PCPP
). - Pro Tips: Highlighted "Exam Traps" to avoid mistakes.
The folder Practice_Exam_Questions
contains question to practice with the solution hidden like the following one:
-
What is the expected output?
print(4 / 2) print(type(4 // 2.0))
π Click to reveal solution
Output:
2.0 <class 'float'>
Explanation:
4 / 2
returns a float (2.0
).4 // 2.0
uses float division β result is2.0
(float).
PCEP (WiP π οΈ) | PCAP (TODO) | PCPP (TODO) |
---|---|---|
Variables & Operators | OOP Principles | Advanced Python Patterns |
Loops & Control Flow | Strings | Concurrency |
Functions Basics print() and input() | Modules and Packages | Networking |
collections (list, tuple, dict) | Advance Exceptions | GUI programming |
error handling (try-except) | File Handling | coding conventions |
Star the repo if it helps you! β
Open an Issue for questions or suggestions.
Submit a Pull Request to add notes or fix errors.