1、可以使用struct模块的pack函数
2、示例:
import struct
bs = pack('f', 123432.523424)
ls = [i for i in bs]
print(ls)
# 输出为[67, 20, 241, 71]
效果如下:
python能像c语言那样控制内存了吗?你说的是python与c语言结合吧?