📜  以下程序的输出将是什么? - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:20.858000             🧑  作者: Mango

代码示例1
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))