python3 struct模块

Posted lilyxiaoyy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 struct模块相关的知识,希望对你有一定的参考价值。

struck模块的使用:struct模块中最重要的两个函数是pack()打包, unpack()解包。
# coding:utf-8
import struct

a = 18
bytes = struct.pack(i, a)
print("%s pack后的长度:" % a, len(bytes))  # 18 pack后的长度: 4
print(bytes)  # b‘\x12\x00\x00\x00‘
s = struct.unpack(i, bytes)[0]
print(s)  # 18

以上是关于python3 struct模块的主要内容,如果未能解决你的问题,请参考以下文章

python3 模块

python3日期格式化操作

Python3.x标准模块库目录

python3 time模块的引用

Python3.x time模块

python3-day5(模块)