网上那么多说创建集合的语句是:
>>>a=set([1,2,3])
python 3.6.3,你们真的能运行吗?
我这里报:
Traceback (most recent call last):
File "<pyshell#114>", line 1, in <module>
a=set([1,2,3])
TypeError: ‘dict‘ object is not callable
Posted 王明辉的部落
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于Python的集合set相关的知识,希望对你有一定的参考价值。
网上那么多说创建集合的语句是:
>>>a=set([1,2,3])
python 3.6.3,你们真的能运行吗?
我这里报:
Traceback (most recent call last):
File "<pyshell#114>", line 1, in <module>
a=set([1,2,3])
TypeError: ‘dict‘ object is not callable
以上是关于关于Python的集合set的主要内容,如果未能解决你的问题,请参考以下文章
关于python里面的set,set之后的集合元素是如何让排列的