@@ -15,6 +15,102 @@ Inside each folder, you'll find code examples and explanations to help you under
15
15
- **11-web-development/**: Introduction to web development with Flask. -->
16
16
<!-- - **12-data-analysis-visualization/**: Data analysis with Pandas and visualization with Matplotlib. -->
17
17
18
+
19
+ <table >
20
+ <thead >
21
+ <tr>
22
+ <th>Folder</th>
23
+ <th>Description</th>
24
+ </tr>
25
+ </thead >
26
+ <tbody >
27
+ <tr>
28
+ <td><a href="https://github.com/codeasarjun/_easy_python/tree/main/01-getting-started">01-getting-started</a></td>
29
+ <td>Introduction to Python with basic examples.</td>
30
+ </tr>
31
+ <tr>
32
+ <td><a href="https://github.com/codeasarjun/_easy_python/tree/main/02-control-flow">02-control-flow</a></td>
33
+ <td>Control flow constructs such as conditionals and loops.</td>
34
+ </tr>
35
+ <tr>
36
+ <td><a href="https://github.com/codeasarjun/_easy_python/tree/main/03-data-structures">03-data-structures</a></td>
37
+ <td>Working with various data structures.</td>
38
+ </tr>
39
+ <tr>
40
+ <td><a href="https://github.com/codeasarjun/_easy_python/tree/main/04-functions">04-functions</a></td>
41
+ <td>Functions, their scope, and higher-order functions.</td>
42
+ </tr>
43
+ <tr>
44
+ <td><a href="05-oop">05-oop</a></td>
45
+ <td>Object-Oriented Programming concepts including classes, inheritance, and polymorphism.</td>
46
+ </tr>
47
+ <tr>
48
+ <td><a href="06-modules-packages">06-modules-packages</a></td>
49
+ <td>Creating and using modules and packages.</td>
50
+ </tr>
51
+ <tr>
52
+ <td><a href="07-file-handling">07-file-handling</a></td>
53
+ <td>Reading from and writing to files.</td>
54
+ </tr>
55
+ <tr>
56
+ <td><a href="08-error-handling">08-error-handling</a></td>
57
+ <td>Handling exceptions and creating custom exceptions.</td>
58
+ </tr>
59
+ <tr>
60
+ <td><a href="09-logging">09-logging</a></td>
61
+ <td>Logging and monitoring examples.</td>
62
+ </tr>
63
+ <tr>
64
+ <td><a href="10-database-interaction">10-database-interaction</a></td>
65
+ <td>Interacting with databases using SQLite and SQLAlchemy.</td>
66
+ </tr>
67
+ <tr>
68
+ <td><a href="11-advanced-topics">11-advanced-topics</a></td>
69
+ <td>Advanced Python topics such as decorators, generators, and context managers.</td>
70
+ </tr>
71
+ <tr>
72
+ <td><a href="12-threads-concurrency-parallelism">12-threads-concurrency-parallelism</a></td>
73
+ <td>Multithreading, multiprocessing, and asynchronous programming.</td>
74
+ </tr>
75
+ <tr>
76
+ <td><a href="13-networking">13-networking</a></td>
77
+ <td>Networking concepts including sockets and HTTP requests.</td>
78
+ </tr>
79
+ <tr>
80
+ <td><a href="14-functional-programming">14-functional-programming</a></td>
81
+ <td>Functional programming techniques such as lambda functions and functional tools.</td>
82
+ </tr>
83
+ <tr>
84
+ <td><a href="15-web-development">15-web-development</a></td>
85
+ <td>Web development with Flask.</td>
86
+ </tr>
87
+ <tr>
88
+ <td><a href="16-graphical-user-interfaces">16-graphical-user-interfaces</a></td>
89
+ <td>Creating graphical user interfaces with Tkinter and PyQt.</td>
90
+ </tr>
91
+ <tr>
92
+ <td><a href="17-security">17-security</a></td>
93
+ <td>Security practices including password hashing and secure coding practices.</td>
94
+ </tr>
95
+ <tr>
96
+ <td><a href="18-serialization">18-serialization</a></td>
97
+ <td>Data serialization techniques using JSON and pickle.</td>
98
+ </tr>
99
+ <tr>
100
+ <td><a href="19-configuration-management">19-configuration-management</a></td>
101
+ <td>Configuration management with configparser and dotenv.</td>
102
+ </tr>
103
+ <tr>
104
+ <td><a href="20-memory-performance">20-memory-performance</a></td>
105
+ <td>Memory profiling and performance profiling techniques.</td>
106
+ </tr>
107
+ <tr>
108
+ <td><a href="21-testing-debugging">21-testing-debugging</a></td>
109
+ <td>Testing and debugging practices in Python.</td>
110
+ </tr>
111
+ </tbody >
112
+ </table >
113
+
18
114
Feel free to explore each folder and try out the code examples provided.
19
115
20
116
Happy learning! #python
0 commit comments