ret.extend(_intToBytes(b, sys.getsizeof(b))) AttributeError: 'bytes' object has no attribute 'extend'怎么解决
时间: 2023-12-14 08:04:20 浏览: 132
RAE RET程序.rar_RAE RET程序_RET程序_apartmentbh3_rae ret_电调天线
5星 · 资源好评率100%
这个错误信息提示是由于字节对象(bytes object)没有 extend() 属性,无法使用此方法将其扩展。你可以使用 b += _intToBytes(b, sys.getsizeof(b)) 替代 ret.extend(_intToBytes(b, sys.getsizeof(b)))。这样就可以将 _intToBytes() 转换的字节串添加到原始字节串 b 中了。如果没有 _intToBytes() 函数或者 sys.getsizeof() 函数报错,那么需要再单独查找问题所在。
阅读全文