使用 freezeset 从 python2 到 python3 发生了什么变化?
我注意到了这种不同的行为:Python2:
>>> a=frozenset()
>>> a
frozenset([])
Python3
>>> a= frozenset()
>>> a
frozenset()
并且:
Python2
>>> a=frozenset((1,2,3))
>>> a
frozenset([1,2,3])
Python3
>>> a=frozenset((1,2,3))
>>> a
frozenset({1,2,3})
为什么?谢谢