table1 = (["パンケーキ"], ["パンケーキ"])
pancake = ["パンケーキ"]
table2 = (pancake, pancake)
print("table1", table1)
print("table2", table2)
table1[0].append("はちみつ")
table2[0].append("はちみつ")
print("結果:table1", table1)
print("結果:table2", table2)
# プログラム9-7(リストが同一かどうかによる違い)