最佳答案
我在使用 Unicode 标识符时偶然发现了这个:
>>> 𝑓, x = 1, 2
>>> 𝑓, x
(1, 2)
>>> 𝑓, f = 1, 2
>>> 𝑓, f
(2, 2)
这是怎么回事?为什么 Python 只是偶尔替换 𝑓
引用的对象?这种行为在哪里描述的?