找出元组键里的 bug

来自 元组
Python 3.14 入门 4分钟 找出 1处问题

找出为什么存储这条位置记录时会在最后一次 print 前失败。

Python
locations = {}
coordinates = [48.86, 2.35]
key = ("Paris", coordinates)

locations[key] = "warehouse"
print(locations[key])
在试验场中打开
报告错误