gpt4 book ai didi

Python浮点到字符串,只有 "dotted notation"?

转载 作者:行者123 更新时间:2023-11-30 23:43:25 25 4
gpt4 key购买 nike

我正在将 float 写入文本文件,如果 Python 停止将“0.000002”等数字写入“2e-6”,我将非常感激。我能做什么?

最佳答案

您可以使用格式化指令,例如:

n = 0.000002
print('{:f}'.format(n))
0.000002

有关格式化的更多信息请参阅这些 Python docs

如果在 Python v2.6 之前工作,则使用旧式(感谢 @mgilson 和 @artSwri)

print('%f' % n)

关于Python浮点到字符串,只有 "dotted notation"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10805718/

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