码迷,mamicode.com
首页 > 编程语言 > 详细

python 字节转换:struct

时间:2018-07-29 18:50:47      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:ros   eric   signed   add   webkit   org   html   wrap   ola   

官网符号说明:https://docs.python.org/3/library/struct.html#format-characters



将一个32位的unsigned int 型数,拆分成4个的字节: pack

import struct
print (struct.pack('>I', 10240099))   #  '>' 表示转换成big-endian,即网络字节序, 'I'表示'10240099'是4个字节的无符号整                                      #  形数
d = struct.pack('<I', 10240099)   #  '<' 表示转换成little-endian
print (d)

运行结果:

b'\x00\x9c@c'
b'c@\x9c\x00'


把相应的位数整合成一个数:unpack

a = struct.pack('>I', 10240099)
b = struct.unpack('>I', a)  #将a 的字节按big-endian转换成一个4字节表示的无符号整型数
print (b)

c = struct.unpack('>IH', b'\xf0\xf0\xf0\xf0\x80\x80')
print (c)

运行结果:

(10240099,)
(4042322160, 32896)  #(I, H)



python 字节转换:struct

标签:ros   eric   signed   add   webkit   org   html   wrap   ola   

原文地址:http://blog.51cto.com/13502993/2151848

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!