Skip to content
Learnearn.uk » Python Unit Home » Python Shopping List Program Tutorial

Python Shopping List Program Tutorial

Python Shopping List Program Tutorial

The aim of this walk-through tutorial is to show you to create a simple shopping list program using Python.

You will learn:

  • How to use procedures(def) to seperate your program into different parts. This makes your program more efficient, easy to read and easy to debug.
  • How to create, add to and delete items from lists.
  • How to backup your list to a text file, so that you can retrieve your list even after you have closed your Python program.

Video tutorial

Here is the full video tutorial, make sure you follow the full tutorial, don’t just copy the code, as you will learn much more by listening in and following along.

Finished Source Code