正文python 获取数字在内存的内容IP云V管理员/2022-08-06/7 阅读 08/06提示:扫一扫查出行【扫一扫了解最新限行尾号】复制提示 #coding=utf-from struct import pack,unpackbyte=pack('f',1.5)print(byte)print([i for i in byte])byte=pack('f',123432.523424)print(byte)print([i for i in byte])输出??['\x00', '\x00', '\xc0', '?']C?G['C', '\x14', '\xf1', 'G']