📅  最后修改于: 2022-03-11 14:45:20.858000             🧑  作者: Mango
this = ["I", "am", "not", "a", "crook"]
that = ["I", "am", "not", "a", "crook"]
print("Test 1: {0}".format(this is that))
that = this
print("Test 2: {0}".format(this is that))