Python
Part of Tutorials
Articles in Python
Read the latest articles published in this section.
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 7 Working With External Libraries
This lesson introduces how to extend Python’s capabilities using external libraries. It covers installing and managing packages with pip, working with virtual environments, and using popular libraries like requests for APIs, BeautifulSoup for web sc…