format的用法,代码中的!r
!s
分别是format的哪部分用法
我查阅文档, 未能找到这部分的说明(https://docs.python.org/3/lib...
使用搜索引擎,也不知如何组织关键词
Python3
拷贝代码
运行之
class Pair:
def __init__(self, x, y):
self.x = x
self.y = y
def __repr__(self):
return 'Pair({0.x!r}, {0.y!r})'.format(self)
def __str__(self):
return '({0.x!s}, {0.y!s})'.format(self)
>>> p = Pair(3, 4)
>>> p
Pair(3, 4) # __repr__() output
>>> print(p)
(3, 4) # __str__() output
PHP中文网2017-04-18 09:41:25
!r
就是 r
epr!s
就是 s
tr!a
就是 a
scii!r
就是 r
epr!s
就是 s
tr!a
就是 a
scii
#🎜🎜#一些例子:#🎜🎜# #🎜🎜#“Harold 是个聪明的 {0Three conversion flags are currently supported: '!s' which calls str() on the value, '!r' which calls repr() and '!a' which calls ascii().
Some examples:
"Harold's a clever {0
目前支持三个转换标志:'!s' 调用 str() 值,'!r' 调用 repr() 和 '!a' 调用 ascii()。!s
}" # Callsstr()
on the argument first
"Bring out the holy {name!r
}" # Callsrepr()
on the argument first
"More {!a
}" # Callsascii()
<块引用>
!s
}”# 首先在参数上调用 str()
!r
}"#首先对参数调用repr()
!a
}"#调用ascii()< /code> 首先讨论参数#🎜🎜#
#🎜🎜#回复0