forked from steam-bell-92/python-mini-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.html
More file actions
608 lines (579 loc) · 21.2 KB
/
README.html
File metadata and controls
608 lines (579 loc) · 21.2 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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>🎮 Python Mini Projects Collection 🎯</title>
<style>
/* From extension vscode.github */
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
.vscode-dark img[src$=\#gh-light-mode-only],
.vscode-light img[src$=\#gh-dark-mode-only],
.vscode-high-contrast:not(.vscode-high-contrast-light) img[src$=\#gh-light-mode-only],
.vscode-high-contrast-light img[src$=\#gh-dark-mode-only] {
display: none;
}
</style>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Microsoft/vscode/extensions/markdown-language-features/media/markdown.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Microsoft/vscode/extensions/markdown-language-features/media/highlight.css">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', system-ui, 'Ubuntu', 'Droid Sans', sans-serif;
font-size: 14px;
line-height: 1.6;
}
</style>
<style>
.task-list-item {
list-style-type: none;
}
.task-list-item-checkbox {
margin-left: -20px;
vertical-align: middle;
pointer-events: none;
}
</style>
<style>
:root {
--color-note: #0969da;
--color-tip: #1a7f37;
--color-warning: #9a6700;
--color-severe: #bc4c00;
--color-caution: #d1242f;
--color-important: #8250df;
}
</style>
<style>
@media (prefers-color-scheme: dark) {
:root {
--color-note: #2f81f7;
--color-tip: #3fb950;
--color-warning: #d29922;
--color-severe: #db6d28;
--color-caution: #f85149;
--color-important: #a371f7;
}
}
</style>
<style>
.markdown-alert {
padding: 0.5rem 1rem;
margin-bottom: 16px;
color: inherit;
border-left: .25em solid #888;
}
.markdown-alert>:first-child {
margin-top: 0
}
.markdown-alert>:last-child {
margin-bottom: 0
}
.markdown-alert .markdown-alert-title {
display: flex;
font-weight: 500;
align-items: center;
line-height: 1
}
.markdown-alert .markdown-alert-title .octicon {
margin-right: 0.5rem;
display: inline-block;
overflow: visible !important;
vertical-align: text-bottom;
fill: currentColor;
}
.markdown-alert.markdown-alert-note {
border-left-color: var(--color-note);
}
.markdown-alert.markdown-alert-note .markdown-alert-title {
color: var(--color-note);
}
.markdown-alert.markdown-alert-important {
border-left-color: var(--color-important);
}
.markdown-alert.markdown-alert-important .markdown-alert-title {
color: var(--color-important);
}
.markdown-alert.markdown-alert-warning {
border-left-color: var(--color-warning);
}
.markdown-alert.markdown-alert-warning .markdown-alert-title {
color: var(--color-warning);
}
.markdown-alert.markdown-alert-tip {
border-left-color: var(--color-tip);
}
.markdown-alert.markdown-alert-tip .markdown-alert-title {
color: var(--color-tip);
}
.markdown-alert.markdown-alert-caution {
border-left-color: var(--color-caution);
}
.markdown-alert.markdown-alert-caution .markdown-alert-title {
color: var(--color-caution);
}
</style>
</head>
<body class="vscode-body vscode-light">
<div align="center">
<h1 id="-python-mini-projects-collection-">🎮 Python Mini Projects Collection 🎯</h1>
<h3 id="learn-python-by-building-fun-interactive-games--tools"><em>Learn Python by Building Fun, Interactive Games & Tools!</em></h3>
<p><a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.10%2B-blue.svg" alt="Python Version"></a>
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-green.svg" alt="License"></a>
<a href=""><img src="https://img.shields.io/badge/projects-21-orange.svg" alt="Projects"></a>
<a href=""><img src="https://img.shields.io/badge/CodeQL-enabled-brightgreen.svg" alt="Code Scanning"></a></p>
<p><strong>🚀 Perfect for beginners | 💡 Learn by doing | 🎨 Beautiful UI | ⚡ Zero setup required</strong></p>
<p><a href="#-quick-start">Quick Start</a> • <a href="#-projects">Projects</a> • <a href="#-features">Features</a> • <a href="#-contributing">Contributing</a></p>
<hr>
</div>
<h2 id="-why-this-repository">🎯 Why This Repository?</h2>
<blockquote>
<p><strong>Tired of boring "Hello World" tutorials?</strong></p>
</blockquote>
<p>We built this collection to make learning Python <strong>fun, interactive, and instantly rewarding</strong>! Each project is:</p>
<ul>
<li>✅ <strong>Complete & Ready to Run</strong> - No setup, no dependencies, just pure Python fun</li>
<li>🎨 <strong>Visually Stunning</strong> - Beautiful emoji-based UI that makes coding exciting</li>
<li>📚 <strong>Educational</strong> - Learn core concepts while building real projects</li>
<li>🎮 <strong>Engaging</strong> - From games to tools, there's something for everyone</li>
<li>💪 <strong>Beginner-Friendly</strong> - Clean code with no complex functions</li>
</ul>
<p><strong>Perfect for:</strong> Students learning Python, teachers looking for class projects, or anyone wanting to code something fun in minutes!</p>
<hr>
<h2 id="-quick-start">⚡ Quick Start</h2>
<h3 id="-try-the-web-app-recommended">🌐 <strong>Try the Web App</strong> (Recommended!)</h3>
<p>Experience all 21 projects in your browser with beautiful animations and visualizations!</p>
<pre><code class="language-bash"><span class="hljs-comment"># Clone the repository</span>
git <span class="hljs-built_in">clone</span> https://github.com/yourusername/python-mini-project.git
<span class="hljs-comment"># Navigate to the web app</span>
<span class="hljs-built_in">cd</span> python-mini-project/web-app
<span class="hljs-comment"># Start the web server</span>
python -m http.server 8000
<span class="hljs-comment"># Open http://localhost:8000 in your browser</span>
</code></pre>
<h3 id="-or-run-python-projects-directly">🐍 <strong>Or Run Python Projects Directly</strong></h3>
<pre><code class="language-bash"><span class="hljs-comment"># Navigate to the project</span>
<span class="hljs-built_in">cd</span> python-mini-project
<span class="hljs-comment"># Run any project (no installation needed!)</span>
python games/Rock-Paper-Scissor/Rock-Paper-Scissor.py
</code></pre>
<p><strong>That's it!</strong> No pip installs, no virtual environments, just instant fun! 🎉</p>
<hr>
<h2 id="-projects">🎮 Projects</h2>
<h3 id="-physics--simulation">🚀 <strong>Physics & Simulation</strong></h3>
<h4 id="-projectile-motion-game">🎯 Projectile Motion Game</h4>
<p>Launch projectiles and visualize trajectory stats!</p>
<ul>
<li>🚀 Simple launch simulation</li>
<li>📊 Shows TOF, Hmax, and Range</li>
<li>📈 Matplotlib plot for each launch</li>
</ul>
<pre><code class="language-bash">python math/Projectile-Motion-Game/Projectile-Motion-Game.py
</code></pre>
<h3 id="-games---test-your-luck--skills">🎲 <strong>Games</strong> - Test Your Luck & Skills!</h3>
<table>
<tr>
<td width="50%">
<h4 id="-rock-paper-scissors">🪨 Rock, Paper, Scissors</h4>
<p>Battle against the computer in this classic game!</p>
<ul>
<li>🎯 Interactive gameplay</li>
<li>🤖 Smart computer opponent</li>
<li>🎨 Visual feedback for wins/losses</li>
</ul>
<pre><code class="language-bash">python games/Rock-Paper-Scissor/Rock-Paper-Scissor.py
</code></pre>
</td>
<td width="50%">
<h4 id="-dice-rolling">🎲 Dice Rolling</h4>
<p>Roll two dice and see your fortune!</p>
<ul>
<li>⚀⚁⚂ Realistic dice emojis</li>
<li>📊 Total calculation</li>
<li>🎰 Perfect for board game nights</li>
</ul>
<pre><code class="language-bash">python games/Roling-Dice/Roling-Dice.py
</code></pre>
</td>
</tr>
<tr>
<td width="50%">
<h4 id="-coordinate-to-polar-transformation">🧭 Coordinate to Polar Transformation</h4>
<p>Convert Cartesian coordinates into polar representation!</p>
<ul>
<li>📍 Input (x, y) coordinates</li>
<li>📏 Computes radius r = sqrt(x^2 + y^2)</li>
<li>📐 Shows angle in both degrees and radians</li>
</ul>
<pre><code class="language-bash">python math/Coordinate-to-Polar-Transformation/Coordinate-to-Polar-Transformation.py
</code></pre>
</td>
<td width="50%">
<h4 id="-derivative-calculator">∂ Derivative Calculator</h4>
<p>Perform full polynomial derivative operations!</p>
<ul>
<li>🧮 First derivative and nth derivative support</li>
<li>📍 Evaluate derivative value at any x</li>
<li>✍️ Input polynomial using coefficient list</li>
</ul>
<pre><code class="language-bash">python math/Derivative-Calculator/Derivative-Calculator.py
</code></pre>
</td>
</tr>
<tr>
<td width="50%">
<h4 id="-coin-flip">🪙 Coin Flip</h4>
<p>Can you predict heads or tails?</p>
<ul>
<li>👑 Heads vs 🦅 Tails</li>
<li>🎭 Simple yet addictive</li>
<li>⚡ Quick decision maker</li>
</ul>
<pre><code class="language-bash">python games/Flipping-toss/Flipping-toss.py
</code></pre>
</td>
<td width="50%">
<h4 id="-number-guessing-game">🎯 Number Guessing Game</h4>
<p>Think you can read the computer's mind?</p>
<ul>
<li>🤔 Interactive guessing</li>
<li>📈📉 Smart hints</li>
<li>🎊 Celebratory win screen</li>
</ul>
<pre><code class="language-bash">python games/Number-Guessing-Game/Number-Guessing-Game.py
</code></pre>
</td>
</tr>
<tr>
<td width="50%">
<h4 id="-hangman-game">🎮 Hangman Game</h4>
<p>Classic word-guessing game!</p>
<ul>
<li>📝 Random word selection</li>
<li>❤️ 6 attempts to guess</li>
<li>🔤 Track guessed letters</li>
</ul>
<pre><code class="language-bash">python games/Hangman-Game/Hangman-Game.py
</code></pre>
</td>
<td width="50%">
<h4 id="-flames-game">💖 FLAMES Game</h4>
<p>Discover your relationship status!</p>
<ul>
<li>👫 Enter two names</li>
<li>🔮 Magical calculation</li>
<li>💕 Friends, Love, Affection, Marriage, Enemies, or Siblings</li>
</ul>
<pre><code class="language-bash">python games/FLAMES-Game/FLAMES-Game.py
</code></pre>
</td>
</tr>
<tr>
<td width="50%">
<h4 id="-password-forge">🔐 Password Forge</h4>
<p>Survive evolving firewall rules by continuously upgrading your password!</p>
<ul>
<li>🔓 Progressive rule unlocking</li>
<li>❤️ Lives system</li>
<li>🏆 Score tracking</li>
<li>🎯 Multiple difficulty levels</li>
</ul>
<pre><code class="language-bash">python games/Password-Forge/Password-Forge.py
</code></pre>
</td>
<h4 id="-apgpagphp-recognizer">📐 AP/GP/AGP/HP Recognizer</h4>
<p>Identify progression types from a number sequence!</p>
<ul>
<li>🔍 Detects Arithmetic, Geometric, Arithmetic-Geometric, and Harmonic patterns</li>
<li>🧠 Supports integer and decimal values</li>
<li>📘 Great for quick sequence practice</li>
</ul>
<pre><code class="language-bash">python math/AP-GP-AGP-HP-Recognizer/AP-GP-AGP-HP-Recognizer.py
</code></pre>
</td>
<td width="50%"></td>
</tr>
</table>
<h3 id="-mathematical-wizards---explore-number-magic">🔢 <strong>Mathematical Wizards</strong> - Explore Number Magic!</h3>
<table>
<tr>
<td width="50%">
<h4 id="-fibonacci-series">✨ Fibonacci Series</h4>
<p>Generate beautiful mathematical sequences</p>
<ul>
<li>🌀 Classic Fibonacci pattern</li>
<li>📊 Visual array display</li>
<li>➡️ Arrow-based formatting</li>
</ul>
<pre><code class="language-bash">python math/Fibonacci-Series/Fibonacci-Series.py
</code></pre>
</td>
<td width="50%">
<h4 id="-pascals-triangle">🔺 Pascal's Triangle</h4>
<p>Discover mathematical beauty in triangles!</p>
<ul>
<li>🎨 Centered triangle display</li>
<li>🔍 View specific rows</li>
<li>📐 Interactive exploration</li>
</ul>
<pre><code class="language-bash">python math/Pascal-Triangle/Pascal-Triangle.py
</code></pre>
</td>
</tr>
<tr>
<td width="50%">
<h4 id="-armstrong-number-checker">💎 Armstrong Number Checker</h4>
<p>Uncover special numbers with unique properties!</p>
<ul>
<li>🔢 Detailed calculation breakdown</li>
<li>✅ Instant verification</li>
<li>💡 Educational examples</li>
</ul>
<pre><code class="language-bash">python math/Armstrong-Number/Armstrong-Number.py
</code></pre>
</td>
<td width="50%">
<h4 id="-simple-calculator">🧮 Simple Calculator</h4>
<p>Your mathematical companion!</p>
<ul>
<li>➕➖✖️➗ All basic operations</li>
<li>💪 Power & modulus support</li>
<li>🎨 Clean menu interface</li>
</ul>
<pre><code class="language-bash">python math/Simple-Calculator/Simple-Calculator.py
</code></pre>
</td>
</tr>
<tr>
<td width="50%">
<h4 id="-collatz-conjecture">🔢 Collatz Conjecture</h4>
<p>Explore the famous 3n+1 problem!</p>
<ul>
<li>🌀 Generate complete sequence</li>
<li>📊 Track steps and statistics</li>
<li>🎯 Watch numbers reach 1</li>
</ul>
<pre><code class="language-bash">python math/Collatz-Conjecture/Collatz-Conjecture.py
</code></pre>
</td>
<td width="50%">
<h4 id="-prime-number-analyzer">🔱 Prime Number Analyzer</h4>
<p>All-in-one prime number toolkit!</p>
<ul>
<li>✅ Check if number is prime</li>
<li>📈 Generate primes up to N</li>
<li>🎯 Find primes in range</li>
<li>🧩 Prime factorization</li>
</ul>
<pre><code class="language-bash">python math/Prime-Number-Analyzer/Prime-Number-Analyzer.py
</code></pre>
</td>
</tr>
</table>
<h3 id="-crypto--utilities---encode-your-secrets">🔐 <strong>Crypto & Utilities</strong> - Encode Your Secrets!</h3>
<table>
<tr>
<td width="50%">
<h4 id="-morse-code-translator">📻 Morse Code Translator</h4>
<p>Transform text into dots and dashes!</p>
<ul>
<li>🔄 Bidirectional translation</li>
<li>📊 Complete Morse chart</li>
<li>💬 Supports letters, numbers & symbols</li>
</ul>
<pre><code class="language-bash">python utilities/Text-to-Morse/Text-to-Morse.py
</code></pre>
</td>
<td width="50%">
<h4 id="-tower-of-hanoi">🗼 Tower of Hanoi</h4>
<p>Solve the classic puzzle step by step!</p>
<ul>
<li>🎯 1-8 disks to solve</li>
<li>📋 Visual tower representation</li>
<li>🧠 Iterative solution display</li>
</ul>
<pre><code class="language-bash">python utilities/Tower-of-Hanoi/Tower-of-Hanoi.py
</code></pre>
</td>
</tr>
<tr>
<td width="50%">
<h4 id="-number-system-converter">🔢 Number System Converter</h4>
<p>Convert between Decimal, Binary, Hex, and Octal!</p>
<ul>
<li>🔄 Seamless base conversions</li>
<li>📚 Educational step-by-step logic</li>
<li>🖥️ Zero-dependency built-in functions</li>
</ul>
<pre><code class="language-bash">python utilities/Number-System-Converter/Number-System-Converter.py
</code></pre>
</td>
<td width="50%"></td>
</tr>
</table>
<h2 id="-features">✨ Features</h2>
<h3 id="-interactive-web-application">🌐 Interactive Web Application</h3>
<ul>
<li><strong>All 21 Projects in Your Browser</strong> - No Python installation required!</li>
<li><strong>Beautiful Animations</strong> - Smooth transitions and visual effects</li>
<li><strong>Dark/Light Theme</strong> - Toggle between themes for comfort</li>
<li><strong>Category Filtering</strong> - Browse by Games, Math, or Utilities</li>
<li><strong>Responsive Design</strong> - Works on desktop, tablet, and mobile</li>
<li><strong>Zero Setup</strong> - Just open and play!</li>
</ul>
<h3 id="-python-cli-projects">🐍 Python CLI Projects</h3>
<table>
<thead>
<tr>
<th>Feature</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>🎨 <strong>Beautiful UI</strong></td>
<td>Every project uses emojis for an engaging visual experience</td>
</tr>
<tr>
<td>💯 <strong>Zero Dependencies</strong></td>
<td>Pure Python - no external packages required!</td>
</tr>
<tr>
<td>📚 <strong>Well-Documented</strong></td>
<td>Clear code with helpful comments throughout</td>
</tr>
<tr>
<td>🎯 <strong>Beginner-Friendly</strong></td>
<td>Perfect for Python learners at any level</td>
</tr>
<tr>
<td>⚡ <strong>Instant Run</strong></td>
<td>No setup required - just download and play!</td>
</tr>
<tr>
<td>🔄 <strong>Interactive</strong></td>
<td>All projects feature user interaction and feedback</td>
</tr>
</tbody>
</table>
<hr>
<h2 id="-what-youll-learn">🎓 What You'll Learn</h2>
<p>Working through these projects, you'll master:</p>
<ul>
<li>✅ <strong>User Input & Output</strong> - Interactive console applications</li>
<li>✅ <strong>Control Flow</strong> - if/elif/else, while loops</li>
<li>✅ <strong>Data Structures</strong> - Lists, dictionaries, arrays</li>
<li>✅ <strong>Randomization</strong> - Using the random module</li>
<li>✅ <strong>String Manipulation</strong> - Text processing and formatting</li>
<li>✅ <strong>Mathematical Operations</strong> - Calculations and algorithms</li>
<li>✅ <strong>Geometric Patterns</strong> - Understanding shapes and symmetry</li>
<li>✅ <strong>Logic & Problem Solving</strong> - Building real-world applications</li>
</ul>
<hr>
<h2 id="-getting-started-guide">🚀 Getting Started Guide</h2>
<h3 id="-web-application-easiest-way">🌐 Web Application (Easiest Way!)</h3>
<ol>
<li>
<p><strong>Clone the repository</strong></p>
<pre><code class="language-bash">git <span class="hljs-built_in">clone</span> https://github.com/yourusername/python-mini-project.git
<span class="hljs-built_in">cd</span> python-mini-project/web-app
</code></pre>
</li>
<li>
<p><strong>Start a local server</strong></p>
<pre><code class="language-bash"><span class="hljs-comment"># Using Python 3</span>
python -m http.server 8000
<span class="hljs-comment"># Or using Node.js</span>
npx http-server
</code></pre>
</li>
<li>
<p><strong>Open your browser</strong> and visit <code>http://localhost:8000</code></p>
</li>
<li>
<p><strong>Enjoy all 21 projects</strong> with beautiful animations! 🎉</p>
</li>
</ol>
<h3 id="-python-cli-projects-1">🐍 Python CLI Projects</h3>
<h4 id="prerequisites">Prerequisites</h4>
<ul>
<li>Python 3.10 or higher (<a href="https://www.python.org/downloads/">Download here</a>)</li>
<li>Any text editor or IDE (VS Code, PyCharm, or even Notepad!)</li>
</ul>
<h4 id="running-your-first-project">Running Your First Project</h4>
<ol>
<li><strong>Choose a project</strong> from the list above</li>
<li><strong>Open your terminal/command prompt</strong></li>
<li><strong>Navigate to the project folder</strong></li>
<li><strong>Run the Python file</strong>:<pre><code class="language-bash">python games/Rock-Paper-Scissor/Rock-Paper-Scissor.py
</code></pre>
</li>
<li><strong>Have fun!</strong> 🎉</li>
</ol>
<h3 id="tips-for-beginners">Tips for Beginners</h3>
<ul>
<li>💡 <strong>Try the web app first</strong> for an instant, visual experience</li>
<li>🎮 Start with simple games like Coin Flip or Dice Rolling</li>
<li>📖 Read through the code to understand how it works</li>
<li>🎨 Try modifying emojis or messages to personalize the projects</li>
<li>🔧 Experiment with changing game rules or adding features</li>
<li>🤝 Share your improvements with the community!</li>
</ul>
<hr>
<h2 id="-contributing">🤝 Contributing</h2>
<p>We love contributions! Here's how you can help:</p>
<h3 id="adding-new-projects">Adding New Projects</h3>
<ol>
<li>🍴 <strong>Fork</strong> the repository</li>
<li>🌟 <strong>Create</strong> a new branch (<code>git checkout -b feature/AmazingProject</code>)</li>
<li>💻 <strong>Add</strong> your mini project
<ul>
<li>Python CLI version in a category folder (<code>games/</code>, <code>math/</code>, or <code>utilities/</code>) and then its own project folder (for example <code>games/Project-Name/Project-Name.py</code>)</li>
<li>Web implementation in <code>web-app/js/projects.js</code></li>
</ul>
</li>
<li>✅ <strong>Ensure</strong> it follows our style (emojis, clean code)</li>
<li>📤 <strong>Commit</strong> your changes (<code>git commit -m 'Add Amazing Project'</code>)</li>
<li>🚀 <strong>Push</strong> to the branch (<code>git push origin feature/AmazingProject</code>)</li>
<li>🎉 <strong>Open</strong> a Pull Request</li>
</ol>
<h3 id="project-guidelines">Project Guidelines</h3>
<h4 id="python-projects">Python Projects</h4>
<ul>
<li>Use emojis for visual appeal 🎨</li>
<li>Keep code simple and beginner-friendly 📚</li>
<li>No external dependencies 💯</li>
<li>Include clear instructions ✅</li>
<li>Add docstrings and comments 📝</li>
</ul>
<h4 id="web-app-projects">Web App Projects</h4>
<ul>
<li>Match the existing design patterns</li>
<li>Use vanilla JavaScript (no frameworks)</li>
<li>Implement in <code>getProjectHTML()</code> and <code>initProject()</code> functions</li>
<li>Include animations and visual feedback</li>
<li>Ensure responsive design</li>
</ul>
<p>See <a href="CONTRIBUTING.html">CONTRIBUTING.md</a> for detailed guidelines.</p>
<hr>
<h2 id="-license">📝 License</h2>
<p>This project is licensed under the MIT License - see the <a href="LICENSE">LICENSE</a> file for details.</p>
<hr>
<h2 id="-connect--share">💬 Connect & Share</h2>
<p>Found this helpful? Show some love!</p>
<ul>
<li>⭐ <strong>Star this repo</strong> if you found it useful</li>
<li>🐛 <strong>Report bugs</strong> or suggest features via <a href="../../issues">Issues</a></li>
<li>💬 <strong>Share</strong> with friends learning Python</li>
<li>🎓 <strong>Use</strong> in your classroom or coding club</li>
</ul>
<hr>
<div align="center">
<h3 id="-happy-coding-">🎉 Happy Coding! 🎉</h3>
<p><strong>Made with ❤️ for Python learners everywhere</strong></p>
<p><em>If you learned something new, don't forget to star the repo! ⭐</em></p>
<p><a href="#-python-mini-projects-collection-">⬆ Back to Top</a></p>
</div>
</body>
</html>