gpt4 book ai didi

python - 格式化输出的缩短代码

转载 作者:行者123 更新时间:2023-11-28 22:00:42 24 4
gpt4 key购买 nike

我必须将二维数组(比方说数组 [100][20])写入文件。这只是我的代码示例:

for i in range(0,99):
print >> file, "%15.9e%24.15e%3d..." % (array[i][0], array[i][1], array[i][2], ... )

是否可以在“%”符号后使用切片或类似符号将其缩短?

最佳答案

你可以这样做:

print >> file, format_string % tuple(array[i])

也就是说,我认为我可能会在这里使用 numpy 以非 ascii 的格式保存数据以提高效率(无论是在执行 IO 上花费的时间还是磁盘空间)。

关于python - 格式化输出的缩短代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14381488/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com