class set(object): def add(self, *args, **kwargs): 源代码里面,add方法,参数写的是*args,不是应该可以可以传递多个值的吗 ss = {1,3,5} ss.add(7,9) 为什么会出错呢!!!??
python 集合set