📌Articles tagged # python
Final Capstone Project — Personal Task & Event Manager
This final capstone project combines multiple intermediate Python concepts into one practical application: a Personal Task & Event Manager. Learners use functions, OOP, modules, error handling, date processing, and SQLite to build a structured real-…
Intermediate Python — Lesson 10 Introduction to Databases (SQLite + Python)
This lesson introduces the fundamentals of working with databases in Python using SQLite. It covers how to create tables, insert, retrieve, update, and delete data using SQL queries, as well as how to connect and interact with a database through Pyt…
Intermediate Python — Lesson 9 Working With Dates & Time
This lesson introduces how to work with dates and time in Python using the datetime module. It covers creating and formatting dates, parsing date strings, performing time calculations with timedelta, and handling real-world scenarios such as schedul…
Intermediate Python — Lesson 8 Modules & Packages (Project Structure)
This lesson introduces how to organize Python code using modules and packages to build clean, scalable applications. It covers importing techniques, project structure design, absolute and relative imports, and best practices for managing larger proj…
Intermediate Python — Lesson 6 Error Handling & Debugging
This lesson introduces essential techniques for handling errors and debugging Python programs. It covers try/except blocks, custom exceptions, the use of else and finally, as well as practical debugging methods and logging. Learners will gain the sk…