> As I understood it, 'b' and 'c' are supposed to be substitutable in the > following example, since 'b' and 'c' will have the same value even after > 'a' changes: > a = [] > b = (a,) > c = (a,) Correct.