Python将数组写入float32

时间:2016-07-05 17:00:39

标签: python binary

嗨,这是一个简单的问题,

我有一个len = 259200的列表,如何将其写入普通的二进制文件?

非常感谢

1 个答案:

答案 0 :(得分:3)

您可以使用.tofile

with open('whatever', 'w') as f:
    arr.tofile(f)