Python int,bytes, st

2023-01-31 05:01:48 python int st

int转bytes:

    python2/3中,使用six.int2byte():

    b = six.int2byte(1)

    得到的结果是b = b'\x01'

 

相关文章