解决SystemError: new style getargs format but argument is not a tuple 程序员文章站 2022-04-04 11:13:39 ... 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咯 相关标签: 那些年踩过的坑 上一篇: 进制转换 下一篇: 解决error: failed to push some refs to 'XXXX' 推荐阅读 解决SystemError: new style getargs format but argument is not a tuple