python-small-examples

@author jackzhenguo
@desc
@tag
@version 
@date 2020/03/04

创建空集合错误

这是Python的一个集合:{1,3,5},它里面没有重复元素,在去重等场景有重要应用。下面这样创建空集合是错误的:

empty = {} #NO!

cpython会解释它为字典

使用内置函数set()创建空集合:

empty = set() #YES!
[上一个例子](/python-small-examples/md/165.html) [下一个例子](/python-small-examples/md/167.html)