Python技巧
Posted stalendp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python技巧相关的知识,希望对你有一定的参考价值。
1. python中struct和union的代码 (参考 Does Python have a bitfield type?)
#!/usr/bin/env python
import ctypes
c_uint8 = ctypes.c_uint8
class Flags_bits(ctypes.Structure):
_fields_ = [
("logout", c_uint8, 1),
("userswitch", c_uint8, 1),
("suspend", c_uint8, 1),
("idle", c_uint8, 1),
]
class Flags(ctypes.Union):
_fields_ = [("b", Flags_bits),
("asbyte", c_uint8)]
flags = Flags()
flags.asbyte = 0xc
print(flags.b.idle)
print(flags.b.suspend)
print(flags.b.userswitch)
print(flags.b.logout)
以上是关于Python技巧的主要内容,如果未能解决你的问题,请参考以下文章