- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
387 lines (342 loc) · 15.8 KB
/
index.html
File metadata and controls
387 lines (342 loc) · 15.8 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
<style>
/* Inline CSS for immediate styling */
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #333;
margin: 0;
padding: 20px;
background: #fff;
}
.header {
background: linear-gradient(135deg, #FCE834 0%, #f9e71e 100%);
padding: 2rem;
text-align: center;
border-radius: 10px;
margin-bottom: 2rem;
border: 3px solid #2c3e50;
}
.header h1 {
color: #2c3e50;
margin: 0;
font-size: 2.5rem;
}
.module-table {
width: 100%;
border-collapse: collapse;
margin: 1.5rem 0;
background: #fff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.module-table th {
background: linear-gradient(135deg, #FCE834 0%, #f9e71e 100%);
color: #2c3e50;
padding: 1rem;
text-align: left;
font-weight: 600;
}
.module-table td {
padding: 1rem;
border-bottom: 1px solid #f5f5f5;
vertical-align: top;
}
.module-table tr:hover {
background-color: rgba(252, 232, 52, 0.1);
}
.btn {
display: inline-block;
padding: 0.5rem 1rem;
margin: 0.2rem;
border-radius: 6px;
text-decoration: none;
font-weight: 500;
transition: transform 0.2s ease;
}
.btn:hover {
transform: translateY(-2px);
}
.btn-colab {
background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
color: white !important;
}
.btn-video {
background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
color: white !important;
}
.btn-theory {
background: #2c3e50;
color: white !important;
}
.btn-principles {
background: linear-gradient(135deg, #FCE834 0%, #f9e71e 100%);
color: #2c3e50 !important;
font-weight: 600;
}
.nav-links {
background: #f5f5f5;
padding: 1rem;
border-radius: 8px;
margin: 1rem 0;
text-align: center;
}
.nav-links a {
display: inline-block;
margin: 0.5rem;
padding: 0.7rem 1.2rem;
background: #FCE834;
color: #2c3e50;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
}
.nav-links a:hover {
background: #2c3e50;
color: #FCE834;
}
h2, h3 {
color: #2c3e50;
border-bottom: 2px solid #FCE834;
padding-bottom: 0.5rem;
}
</style>
<div class="header">
<h1>🐍 Python Course - Interactive Learning Hub</h1>
<p style="font-size: 1.2rem; margin: 1rem 0; color: #2c3e50;">Comprehensive Python course with video tutorials, interactive exercises, and hands-on assignments</p>
</div>
<div class="nav-links">
<a href="Coding_Principles/">🧠 Coding Principles</a>
<a href="Lecture_Notes/">📚 Lecture Notes</a>
<a href="Coding/">💻 Practice</a>
<a href="Assignments/">📝 Assignments</a>
<a href="https://github.com/stawiskm/pythoncourse" target="_blank">📁 Repository</a>
</div>
<h2>🎯 Quick Start Guide</h2>
<h3>New to Programming?</h3>
<p>Start with our <a href="Coding_Principles/" class="btn btn-principles">🧠 Coding Principles</a> to learn the right mindset, then dive into <a href="Lecture_Notes/Python01-py101.html" class="btn btn-theory">🐍 Python 101</a>.</p>
<h3>Ready to Code?</h3>
<p>Jump straight into our interactive notebooks on Google Colab - no installation required!</p>
<h2>📚 Course Modules</h2>
<h3>Module 0: Coding Principles & Mindset</h3>
<p>Essential principles for effective programming and problem-solving.</p>
<table class="module-table">
<thead>
<tr>
<th>Topic</th>
<th>Video</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>10 Ground Rules to Vibe With Your Code</strong></td>
<td><a href="10_Ground_Rules_to__Vibe__With_Your_Code.mp4" class="btn btn-video">🎥 Watch</a></td>
<td>Core coding principles and best practices</td>
</tr>
<tr>
<td><strong>From Problem to Python</strong></td>
<td><a href="From_Problem_to_Python__A_Beginner_s_Blueprint.mp4" class="btn btn-video">🎥 Watch</a></td>
<td>Problem-solving methodology for programming</td>
</tr>
<tr>
<td><strong>Ground Rules for Coding with AI</strong></td>
<td><a href="Ground_Rules_for_Coding_with_AI.mp4" class="btn btn-video">🎥 Watch</a></td>
<td>Best practices for AI-assisted programming</td>
</tr>
</tbody>
</table>
<h3>Module 1: Python Fundamentals</h3>
<p>Learn the core building blocks of Python programming.</p>
<table class="module-table">
<thead>
<tr>
<th>Topic</th>
<th>Video</th>
<th>Theory</th>
<th>Practice (Colab)</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Python Basics</strong></td>
<td><a href="Lecture_Notes/Python01-py101_The_Builder_s_Journey__A_Guide_to_Python.mp4" class="btn btn-video">🎥 Watch</a></td>
<td><a href="Lecture_Notes/Python01-py101.html" class="btn btn-theory">📖 Read</a></td>
<td>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%200%20(Beginner)/Py01-py101-b.ipynb" class="btn btn-colab">Beginner</a>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%201%20(Easy)/Py01-py101.ipynb" class="btn btn-colab">Easy</a>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%202%20(Medium)/Py01-py101.ipynb" class="btn btn-colab">Medium</a>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%203%20(Hard)/Py01-py101.ipynb" class="btn btn-colab">Hard</a>
</td>
</tr>
</tbody>
</table>
<h3>Module 2: Data Manipulation</h3>
<p>Master working with data structures, arrays, and data processing.</p>
<table class="module-table">
<thead>
<tr>
<th>Topic</th>
<th>Video</th>
<th>Theory</th>
<th>Practice (Colab)</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Arrays & Lists</strong></td>
<td><a href="Lecture_Notes/Python02-arrays_An_Introduction_to_Python_Arrays__From_Lists_to_Light_Speed.mp4" class="btn btn-video">🎥 Watch</a></td>
<td><a href="Lecture_Notes/Python02-arrays.html" class="btn btn-theory">📖 Read</a></td>
<td>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%200%20(Beginner)/Py02-arrays-b.ipynb" class="btn btn-colab">Beginner</a>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%201%20(Easy)/Py02-arrays.ipynb" class="btn btn-colab">Easy</a>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%202%20(Medium)/Py02-arrays.ipynb" class="btn btn-colab">Medium</a>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%203%20(Hard)/Py02-arrays.ipynb" class="btn btn-colab">Hard</a>
</td>
</tr>
<tr>
<td><strong>NumPy</strong></td>
<td><a href="Lecture_Notes/PythonE-Numpy__Your_Python_Superpower_for_Data.mp4" class="btn btn-video">🎥 Watch</a></td>
<td><a href="Lecture_Notes/PythonE-Numpy.html" class="btn btn-theory">📖 Read</a></td>
<td>-</td>
</tr>
<tr>
<td><strong>Pandas</strong></td>
<td><a href="Lecture_Notes/Python03-Pandas_Your_Ultimate_Data_Sidekick.mp4" class="btn btn-video">🎥 Watch</a></td>
<td><a href="Lecture_Notes/Python03-Pandas.html" class="btn btn-theory">📖 Read</a></td>
<td>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%200%20(Beginner)/Py03-pandas-b.ipynb" class="btn btn-colab">Beginner</a>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%201%20(Easy)/Py03-pandas.ipynb" class="btn btn-colab">Easy</a>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%202%20(Medium)/Py03-pandas.ipynb" class="btn btn-colab">Medium</a>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%203%20(Hard)/Py03-pandas.ipynb" class="btn btn-colab">Hard</a>
</td>
</tr>
</tbody>
</table>
<h3>Module 3: Advanced Topics</h3>
<p>Explore specialized areas and advanced concepts.</p>
<table class="module-table">
<thead>
<tr>
<th>Topic</th>
<th>Video</th>
<th>Theory</th>
<th>Practice</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Data Visualization</strong></td>
<td><a href="Lecture_Notes/Python04-Plotting_s_Viz_Duel__Matplotlib_vs.mp4" class="btn btn-video">🎥 Watch</a></td>
<td><a href="Lecture_Notes/Python04-Plotting.html" class="btn btn-theory">📖 Read</a></td>
<td>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%200%20(Beginner)/Py04-plotting-b.ipynb" class="btn btn-colab">Beginner</a>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%201%20(Easy)/Py04-plotting.ipynb" class="btn btn-colab">Easy</a>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%202%20(Medium)/Py04-plotting.ipynb" class="btn btn-colab">Medium</a>
<a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%203%20(Hard)/Py04-plotting.ipynb" class="btn btn-colab">Hard</a>
</td>
</tr>
<tr>
<td><strong>Data Science</strong></td>
<td><a href="Lecture_Notes/PythonE-Datascience_The_Data_Science_Journey__From_Numbers_to_Knowledge.mp4" class="btn btn-video">🎥 Watch</a></td>
<td><a href="Lecture_Notes/PythonE-Datascience.html" class="btn btn-theory">📖 Read</a></td>
<td><a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Coding/Level%200%20(Beginner)/PyE-Datascience.ipynb" class="btn btn-colab">Practice</a></td>
</tr>
<tr>
<td><strong>GUI Development</strong></td>
<td>-</td>
<td><a href="Lecture_Notes/PythonE-GUI.html" class="btn btn-theory">📖 Read</a></td>
<td>-</td>
</tr>
<tr>
<td><strong>Data Visualization Rules</strong></td>
<td><a href="The_10_Golden_Rules_of_Data_Visualization.mp4" class="btn btn-video">🎥 Watch</a></td>
<td>-</td>
<td>-</td>
</tr>
</tbody>
</table>
<h3>Module 4: Useful Tools</h3>
<p>Practical tools for development and project management.</p>
<table class="module-table">
<thead>
<tr>
<th>Topic</th>
<th>Video</th>
<th>Theory</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Git Version Control</strong></td>
<td><a href="Lecture_Notes/Git01-101_Explained__From_Chaos_to_Control.mp4" class="btn btn-video">🎥 Watch</a></td>
<td><a href="Lecture_Notes/Git01-101.html" class="btn btn-theory">📖 Read</a></td>
<td>Version control and collaboration</td>
</tr>
<tr>
<td><strong>File Handling</strong></td>
<td>-</td>
<td><a href="Lecture_Notes/PythonE-Path and Filehandling.html" class="btn btn-theory">📖 Read</a></td>
<td>Working with files and directories</td>
</tr>
</tbody>
</table>
<h2>📝 Assignments & Exercises</h2>
<h3>Structured Assignments</h3>
<p>Work through carefully designed problems that reinforce each module:</p>
<ul>
<li><strong><a href="Assignments/Py01-Assignments.html">Assignment 1: Python Basics</a></strong> - Variables, functions, and control flow</li>
<li><strong><a href="Assignments/Py02-Assignments.html">Assignment 2: Arrays</a></strong> - List operations and array manipulation
<ul><li><a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Assignments/Py02-Assignments.ipynb" class="btn btn-colab">📓 Interactive Notebook</a></li></ul>
</li>
<li><strong><a href="Assignments/Py03-Assignments.html">Assignment 3: Pandas</a></strong> - Data analysis with Pandas
<ul><li><a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Assignments/Py03-Assignments.ipynb" class="btn btn-colab">📓 Interactive Notebook</a></li></ul>
</li>
<li><strong><a href="Assignments/Py04-Assignments.html">Assignment 4: Visualization</a></strong> - Creating meaningful visualizations
<ul><li><a href="https://colab.research.google.com/github/stawiskm/pythoncourse/blob/student/Assignments/Py04-Assignments.ipynb" class="btn btn-colab">📓 Interactive Notebook</a></li></ul>
</li>
</ul>
<h2>🎮 Practice by Difficulty Level</h2>
<p>Choose exercises that match your current skill level:</p>
<div class="nav-links">
<a href="Coding/Level 0 (Beginner)/" style="background: #28a745;">🟢 Beginner Level</a>
<a href="Coding/Level 1 (Easy)/" style="background: #FCE834; color: #2c3e50;">🟡 Easy Level</a>
<a href="Coding/Level 2 (Medium)/" style="background: #fd7e14;">🟠 Medium Level</a>
<a href="Coding/Level 3 (Hard)/" style="background: #dc3545;">🔴 Hard Level</a>
</div>
<h2>🚀 Learning Path Recommendations</h2>
<h3>Path 1: Complete Beginner</h3>
<ol>
<li><strong>Start with Coding Principles</strong> - Watch the <a href="Coding_Principles/">mindset videos</a></li>
<li>Learn <a href="Lecture_Notes/Python01-py101.html">Python Fundamentals</a></li>
<li>Practice with <a href="Coding/Level 0 (Beginner)/">Beginner Level Exercises</a></li>
<li>Progress through Data Manipulation (Arrays, NumPy, Pandas)</li>
<li>Move to Advanced Topics (Visualization, Data Science)</li>
<li>Learn <a href="Lecture_Notes/Git01-101.html">Useful Tools</a> when needed</li>
<li>Complete assignments for each module</li>
</ol>
<h3>Path 2: Some Programming Experience</h3>
<ol>
<li><strong>Review Coding Principles</strong> - Essential for good practices</li>
<li>Quick review of <a href="Lecture_Notes/Python01-py101.html">Python Basics</a></li>
<li>Jump to <a href="Coding/Level 1 (Easy)/">Easy Level Exercises</a></li>
<li>Focus on <a href="Lecture_Notes/Python03-Pandas.html">Data Manipulation</a> and <a href="Lecture_Notes/Python04-Plotting.html">Visualization</a></li>
<li>Explore <a href="Lecture_Notes/PythonE-Numpy.html">NumPy</a> and <a href="Lecture_Notes/PythonE-Datascience.html">Data Science</a></li>
</ol>
<h3>Path 3: Experienced Programmer</h3>
<ol>
<li><strong>Review AI Coding Principles</strong> - Adapt to modern development</li>
<li>Start with <a href="Coding/Level 2 (Medium)/">Medium</a> or <a href="Coding/Level 3 (Hard)/">Hard Level</a> exercises</li>
<li>Deep dive into <a href="Lecture_Notes/PythonE-Datascience.html">Data Science</a></li>
<li>Explore advanced topics like GUI development</li>
</ol>
<div style="text-align: center; margin: 3rem 0; padding: 2rem; background: #f5f5f5; border-radius: 10px;">
<h2>🎓 Ready to Start?</h2>
<p>Choose your starting point and begin your Python journey today!</p>
<a href="Coding_Principles/" class="btn btn-principles" style="font-size: 1.2rem; padding: 1rem 2rem;">🧠 Start with Principles</a>
</div>
<hr style="border: none; border-top: 3px solid #FCE834; margin: 3rem 0;">
<p style="text-align: center; color: #2c3e50; font-style: italic;">
<strong>Happy Coding! 🐍✨</strong>
</p>