Lesson

Lists & Loops

Challenge 1

Sort `nums = [5, 2, 8, 1, 9]` and print. Expected: `[1, 2, 5, 8, 9]`

Python Editor
Loading editor...