gpt4 book ai didi

python - 在 python 中使用 str.format 时的引号

转载 作者:太空宇宙 更新时间:2023-11-04 08:11:35 26 4
gpt4 key购买 nike

当使用 str.format 在 python 2.7.6 中输出时,如下所示:

>>> "| {0: ^18} | {1: ^18} |".format(1, 0.001)

结果:

'|         1          |       0.001        |'

我想知道如何抑制输出字符串两端的单引号。

最佳答案

引号不是格式语句返回值的一部分,它们来自 python 解释器,告诉你它正在显示一个字符串值:

momerath:~ mgregory$ python
Python 2.7.6 (v2.7.6:3a1db0d2747e, Nov 10 2013, 00:42:54)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> "| {0: ^18} | {1: ^18} |".format(1, 0.001)
'| 1 | 0.001 |'
>>> print "| {0: ^18} | {1: ^18} |".format(1, 0.001)
| 1 | 0.001 |
>>> a = 1
>>> a
1
>>> a = "foo"
>>> a
'foo'
>>> print a
foo
>>>

... 所以如果您只想查看字符串的值,只需打印它即可。

我不知道有什么方法可以让 python 解释器在报告字符串结果时不要引用它们。

关于python - 在 python 中使用 str.format 时的引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21343842/

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