loop
← All sections

Module 3 · Boolean values, conditional execution, loops, lists and list processing, logical and bitwise operations

Sorting lists: bubble sort

Put a list in order. Watch the classic bubble sort algorithm work step by step — then meet the one-line way Python does it for you.

Begin lesson 1 →
  1. 1The bubble sortWatch the classic sorting algorithm, one comparison at a time.
  2. 2Sorting a listThe one-line way: sort() and sorted(), the way you'll really do it.