gpt4 book ai didi

python - 如何从文件中读取 float ?

转载 作者:太空狗 更新时间:2023-10-30 00:22:00 25 4
gpt4 key购买 nike

当文件为字符串格式时,如何在 Python 中打开文件并从文件中读取 float ?我还想更改每个 float 的值并用新值重写文件。

最佳答案

假设每行有一个 float :

with open("myfile") as f:
floats = map(float, f)

# change floats

with open("myfile", "w") as f:
f.write("\n".join(map(str, floats)))

如果您想要更多地控制格式,请使用 format method字符串。例如,这只会在每个句点后打印 3 位数字:

    f.write("\n".join(map("{0:.3f}".format, floats)))

关于python - 如何从文件中读取 float ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11053318/

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