# Chapter 22 example: lists are passed by reference. a = [1, 2, 3] b = a b[0] = 99 print(a[0]) # 99 -- changing through b changes a as well