-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (127 loc) · 5.65 KB
/
index.html
File metadata and controls
133 lines (127 loc) · 5.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Python Zero to Hero is an open-source, project-based Python course featuring self-contained HTML lessons, runnable demo scripts, and exercises—from basics, By Bocaletto Luca" />
<meta name="keywords" content="Python, open-source, tutorial, course, programming, bocaletto luca, web APIs, packaging, databases, Flask, FastAPI, CLI, concurrency, pandas, numpy, asyncio" />
<title>Python Zero to Hero | Course Opensource By Bocaletto Luca</title>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-YSa3P1QY0VSei3nHevwltF1Jxv2pT3z5z0R6x35o1XQdYzdgQc8sYC+bS9v+g3Tc"
crossorigin="anonymous"
>
<style>
body {
padding-top: 4rem;
}
.chapter-list a {
text-decoration: none;
}
footer {
padding: 2rem 0;
text-align: center;
font-size: .9rem;
color: #666;
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="#">Python Zero to Hero</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navMenu"
aria-controls="navMenu"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navMenu">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="#fundamentals">Fundamentals</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#advanced">Advanced Topics</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/bocaletto-luca/python-zero-to-hero" target="_blank">
GitHub Repo
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="container">
<header class="mb-5">
<h1 class="display-5">Python Zero to Hero</h1>
<p class="lead">
A comprehensive, console-only walkthrough from the very basics of Python up to advanced topics. Each chapter
comes with theory, code examples, exercises, and downloadable <code>.py</code> files.
</p>
<hr>
</header>
<!-- Fundamentals Section -->
<section id="fundamentals" class="mb-5">
<h2>Fundamentals (Console-Only)</h2>
<p>These first 10 chapters cover Python essentials, from installation to iterators and comprehensions.</p>
<ul class="list-group chapter-list">
<li class="list-group-item"><a href="chapter1.html">1. Setup & “Hello, World!”</a></li>
<li class="list-group-item"><a href="chapter2.html">2. Data Types & Variables</a></li>
<li class="list-group-item"><a href="chapter3.html">3. Operators</a></li>
<li class="list-group-item"><a href="chapter4.html">4. Console I/O</a></li>
<li class="list-group-item"><a href="chapter5.html">5. Control Flow</a></li>
<li class="list-group-item"><a href="chapter6.html">6. Collections</a></li>
<li class="list-group-item"><a href="chapter7.html">7. Functions & Modules</a></li>
<li class="list-group-item"><a href="chapter8.html">8. File I/O</a></li>
<li class="list-group-item"><a href="chapter9.html">9. Errors & Exceptions</a></li>
<li class="list-group-item"><a href="chapter10.html">10. Iterators, Generators & Comprehensions</a></li>
</ul>
</section>
<!-- Advanced Section -->
<section id="advanced" class="mb-5">
<h2>Advanced Topics</h2>
<p>Chapters 11–22 delve into OOP, testing, networking, packaging, performance and more.</p>
<ul class="list-group chapter-list">
<li class="list-group-item"><a href="chapter11.html">11. Object-Oriented Programming</a></li>
<li class="list-group-item"><a href="chapter12.html">12. Decorators & Context Managers</a></li>
<li class="list-group-item"><a href="chapter13.html">13. Command-Line Arguments</a></li>
<li class="list-group-item"><a href="chapter14.html">14. Logging & Configuration</a></li>
<li class="list-group-item"><a href="chapter15.html">15. Testing & Debugging</a></li>
<li class="list-group-item"><a href="chapter16.html">16. Concurrency & Parallelism</a></li>
<li class="list-group-item"><a href="chapter17.html">17. Networking & HTTP</a></li>
<li class="list-group-item"><a href="chapter18.html">18. Console Database (SQLite)</a></li>
<li class="list-group-item"><a href="chapter19.html">19. OS & Filesystem Interaction</a></li>
<li class="list-group-item"><a href="chapter20.html">20. Packaging & Distribution</a></li>
<li class="list-group-item"><a href="chapter21.html">21. Profiling & Optimization</a></li>
<li class="list-group-item"><a href="chapter22.html">22. Final CLI Project</a></li>
</ul>
</section>
</main>
<!-- Footer -->
<footer>
<p>
© 2025 Python Zero to Hero •
<a href="https://github.com/bocaletto-luca/python-zero-to-hero" target="_blank">
bocaletto-luca/python-zero-to-hero
</a>
</p>
</footer>
<!-- Bootstrap JS Bundle -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pQjTSprQoSWb8PQmxHkFvHUuI+13Z2VBxXc5xykxDc8/8aMbkwg/Sf5FCvbyT1Kg"
crossorigin="anonymous"
></script>
</body>
</html>