Skip to content

Commit ba47ff6

Browse files
Merge pull request #1 from siv-the-programmer/sivbranch
Sivbranch
2 parents cd32ad6 + 2f20da3 commit ba47ff6

14 files changed

Lines changed: 2285 additions & 229 deletions

.gitignore

Lines changed: 0 additions & 207 deletions
This file was deleted.

LICENSE

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
MIT License
2-
3-
Copyright (c) 2026 Sivario
4-
5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
11-
12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
1+
MIT License
2+
3+
Copyright (c) 2026 Sivario
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 76 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,76 @@
1-
# Python_essentials1
1+
# Python_essentials1
2+
3+
![Python](https://img.shields.io/badge/Python-3.x-blue?logo=python&logoColor=white)
4+
![PCEP](https://img.shields.io/badge/PCEP-Entry_Level-orange)
5+
![Cisco](https://img.shields.io/badge/Cisco-Networking_Academy-blue?logo=cisco&logoColor=white)
6+
7+
8+
## Overview
9+
This repository contains a **complete study guide** for
10+
**Cisco Networking Academy – Python Essentials 1**, aligned with the
11+
**PCEP (Certified Entry-Level Python Programmer)** exam.
12+
13+
The goal of this repository is **understanding**, not memorization.
14+
15+
---
16+
17+
## Who This Is For
18+
This repository is intended for:
19+
- Beginners learning Python fundamentals
20+
- Students completing Cisco Python Essentials 1
21+
- Candidates preparing for the PCEP exam
22+
23+
---
24+
25+
## Repository Structure
26+
27+
python-essentials-1/
28+
├── 01-python-basics.md
29+
├── 02-data-types-variables.md
30+
├── 03-operators-expressions.md
31+
├── 04-control-flow.md
32+
├── 05-loops.md
33+
├── 06-data-collections.md
34+
├── 07-strings.md
35+
├── 08-functions.md
36+
├── 09-exceptions.md
37+
├── 10-modules-packages.md
38+
├── 11-basic-projects.md
39+
└── README.md
40+
41+
Each file covers **one core topic** from the Python Essentials 1 curriculum.
42+
43+
---
44+
45+
## How to Study (Recommended)
46+
47+
1. Study the files **in order**
48+
2. Read explanations carefully
49+
3. Type all code examples manually
50+
4. Modify examples and observe behavior
51+
5. Answer the self-test questions in each file
52+
53+
Do not skip topics.
54+
Python concepts build on each other.
55+
56+
---
57+
58+
## Exam Focus
59+
This repository emphasizes:
60+
- correct mental models
61+
- common beginner mistakes
62+
- PCEP-style exam traps
63+
- understanding program flow and behavior
64+
65+
---
66+
67+
## Final Note
68+
If you can:
69+
- explain every example
70+
- predict output before running code
71+
- identify common errors quickly
72+
73+
you are ready for **Python Essentials 1** and **PCEP**.
74+
75+
Study carefully. Understand deeply.
76+

0 commit comments

Comments
 (0)