This article assumes you're already comfortable writing simple Python programs and know the basics (if, for, functions, and lists). Here we're not learning how to use Python—we're learning why it behaves the way it does.
Try to guess what this code prints.
numbers = [1, 2, 3]
other = numbers
del numbers






