我正在尝试使用按位“和”和其他一些运算符来c_uint32
在 python 中输入数据。
我收到以下错误:
TypeError: unsupported operand type(s) for &: 'c_uint' and 'c_uint'
我相信我收到此错误是因为python 库&
不支持Bitwise 。c_uint
有什么方法可以将任何重载运算符添加到内置数据类型中?
我正在尝试使用按位“和”和其他一些运算符来c_uint32
在 python 中输入数据。
我收到以下错误:
TypeError: unsupported operand type(s) for &: 'c_uint' and 'c_uint'
我相信我收到此错误是因为python 库&
不支持Bitwise 。c_uint
有什么方法可以将任何重载运算符添加到内置数据类型中?