gpt4 book ai didi

python - Python 中是否有多种格式说明符?

转载 作者:太空狗 更新时间:2023-10-29 21:14:54 25 4
gpt4 key购买 nike

我有一个 44 列宽的数据表,我需要将其写入文件。我不想写:

outfile.write("%i,%f,%f,$f ... )\n" % (i, a,b,c ...)) 

在 Fortran 中,您可以轻松指定多个格式说明符:

write (*,"(3f8.3)") a,b,c

Python 中有类似的功能吗?

最佳答案

>>> "%d " * 3
'%d %d %d '
>>> "%d " * 3 % (1,2,3)
'1 2 3 '

关于python - Python 中是否有多种格式说明符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/945972/

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