您的当前位置:首页正文

Python中msgpack库如何使用?

2024-07-16 来源:客趣旅游网

 

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

库安装:

pip install msgpack

导入使用:

import msgpack

使用操作:

import msgpack
 
var = {'a': 'this',
'b': 'is',
'c': 'a test'
} 
print(var)

输出结果:

{'a': 'this', 'b': 'is', 'c': 'a test'}

使用msgpack库运行出来的格式以及长度在上述已充分表示,大家现在应该都掌握了吧,如果还想继续探索,也可以对比与json库的差别哦~

显示全文