我收到以下错误
AttributeError: 'NoneType' object has no attribute 'add'
当我尝试这个时。
not_yet_bought_set = set()
.
.
.
for value in set_dict.itervalues():
for item in value:
not_yet_bought_set = not_yet_bought_set.add(item)
我不明白为什么会出现此错误,是因为我总是将 not_yet_bought_set 设为新的吗?我做这个,因为当我只做
not_yet_bought_set.add(item)
不会有所有值的所有项目。我不知道为什么。
值是集合和
not_yet_bought_set.union(value)
也会产生这个错误
谢谢你的帮助。