python 结构包双精度
我想将-123.456转换为C double,以便在python中进行网络传输。所以我尝试了这个:
struct.pack('d', -123.456)
我得到的结果是:
'w\xbe\x9f\x1a/\xdd^\xc0'
显然那里有一些十六进制,但是那里的 w、/ 和 ^ 是什么?
I want to convert -123.456 into a C double for network transmission in python. So I tried this:
struct.pack('d', -123.456)
I get this as a result:
'w\xbe\x9f\x1a/\xdd^\xc0'
Obviously there is some hex in there, but what is with the w, /, and ^ sprinkled in there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们分别是“w”、“/”和“^”。某些字节序列确实对应于 ASCII 字符。
They are, respectively, a "w", "/", and "^". Some byte sequences do correspond to ASCII characters.