# Chapter 11 example: multi-assignment and the swap trick. name, level = "Keiko", 7 print(name, level) a, b = 1, 2 a, b = b, a print(a, b) # 2 1