Course: Cisco Python Fundamentals (Networking Academy)
Status: 🚀 In Progress
- the universal concepts of computer programming;
- the syntax and semantics of the Python language;
- practical skills in resolving typical implementation challenges;
- how to use the most important elements of the Python Standard Library;
- how to install your runtime environment;
- how to design, develop, test, and debug simple Python programs.
The course is divided into 4 modules, organized into 2 Practical Exams (PE):
- PE1: Modules 1-4
- PE2: Modules 1-4 (Advanced concepts)
| Module | Topics | Notes | Exercises | Projects | Status |
|---|---|---|---|---|---|
| Module 1 | Introduction to Python & Computer Programming | 📝 | 🔨 | 🚀 | ⬜ Not Started |
| Module 2 | Data Types, Variables & Operators | 📝 | 🔨 | 🚀 | ⬜ Not Started |
| Module 3 | Control Flow & Data Structures | 📝 | 🔨 | 🚀 | ⬜ Not Started |
| Module 4 | Functions & Advanced Topics | 📝 | 🔨 | 🚀 | ⬜ Not Started |
| PE1 Overall | ░░░░░░░░░░ 0% |
| Module | Topics | Notes | Exercises | Projects | Status |
|---|---|---|---|---|---|
| Module 1 | Introduction to Python & Computer Programming | 📝 | 🔨 | 🚀 | ⬜ Not Started |
| Module 2 | Data Types, Variables & Operators | 📝 | 🔨 | 🚀 | ⬜ Not Started |
| Module 3 | Control Flow & Data Structures | 📝 | 🔨 | 🚀 | ⬜ Not Started |
| Module 4 | Functions & Advanced Topics | 📝 | 🔨 | 🚀 | ⬜ Not Started |
| PE2 Overall | ░░░░░░░░░░ 0% |
.
├── ciso_netacad/
│ ├── PE1/
│ │ ├── module_1/
│ │ │ ├── notes/
│ │ │ ├── exercises/
│ │ │ └── projects/
│ │ ├── module_2/
│ │ │ ├── notes/
│ │ │ ├── exercises/
│ │ │ └── projects/
│ │ ├── module_3/
│ │ │ ├── notes/
│ │ │ ├── exercises/
│ │ │ └── projects/
│ │ ├── module_4/
│ │ │ ├── notes/
│ │ │ ├── exercises/
│ │ │ └── projects/
│ └── PE2/
│ ├── module_1/
│ ├── module_2/
│ ├── module_3/
│ └── module_4/
├── .gitignore
└── README.md
- Notes: Add your learning notes in the
notes/folder for each module - Exercises: Complete practice exercises in the
exercises/folder - Projects: Build practical projects in the
projects/folder - Status Updates: Mark modules as complete once finished
- Exercises:
exercise_1.py,exercise_2.py - Projects:
project_1.py,project_capstone.py - Notes: Create
.mdor.txtfiles for documentation
- ✅ Complete PE1 - Module 1
- ✅ Complete PE1 - Module 2
- Complete PE1 - Module 3
- Complete PE1 - Module 4
- Complete PE2 - Module 1
- Complete PE2 - Module 2
- Complete PE2 - Module 3
- Complete PE2 - Module 4
- Build a capstone project
- Pass Cisco final exam
- Keep your code clean and well-commented
- Test your code before committing
- Document challenges and solutions in notes