本文主要是介绍解决SystemError: new style getargs format but argument is not a tuple,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
SystemError: new style getargs format but argument is not a tuple
想给图片添加灰度值,莫名其妙出现这个
这个提示的意思就是说,putpixel()参数不是元组。我心想我这个需要数据格式也不是元组啊,不过既然提示这个是新格式的数据,那我就看它是什么类型的数据
print(type(256/(label[i][j]+1)))
<class 'numpy.float64'>
原来label是我前面用numpy构造的一个新数组,得到数据类型也就不是int
我就把前面强转成int类型,就ok咯
这篇关于解决SystemError: new style getargs format but argument is not a tuple的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!