gpt4 book ai didi

python - 如何在 Python 中使用 .format() 函数的多个选项

转载 作者:行者123 更新时间:2023-12-05 04:18:25 25 4
gpt4 key购买 nike

我阅读了 Python3.3 文档中有关 .format() 函数的部分并进行了一些在线研究,但不幸的是我只找到了“单个”选项的示例和解释。

这是一个例子:

  • 打印右对齐

>>> print("这是一个 {:>30} 测试 ".format(2.345345345345))

this is a                 2.345345345345  test 
  • 只打印小数点后两位数

>>> print("这是一个 {:.2f} 测试 ".format(2.345345345345))

this is a 2.35  test

但是我怎样才能同时做这两件事呢?我已经尝试过各种变体,但不幸的是没有成功。有人知道正确的语法吗?

最佳答案

尝试

print("this is a {:>30.2f} test ".format(2.345345345345))

如有疑问,请尝试显而易见的解决方案。

关于python - 如何在 Python 中使用 .format() 函数的多个选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14971809/

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