Python Projects
·199 words·1 min
So you’ve learned the basics of Python and now you’re wondering what’s next.
The best way forward is to start writing things, but maybe you don’t know how
to start. To bridge the gap between exercises from your Python course and building
real projects, here’s a collection of intermediate projects.
Each project on this page assumes you already know the basics of Python. Don’t worry if you’re not an expert yet. You can always look at the documentation or go through a part of your Python course again. Every project is broken down into small steps so you can follow along. Together, we can build up our project piece by piece.
Sudoku solver #
Write a program to solve any sudoku puzzle. We will look at how the backtracking algorithm works, and apply it to sudokus.
To-Do List application #
We will build a web application for a simple to-do list. You will learn how to use the Flask framework in order to build an application that will run in your browser. Along the way, we will look at the basics of web applications, HTML, CSS styling, and databases.
- Part 1 - Introduction
- Part 2 - Flask
- Part 3 coming soon