python '%r'或者'{!r}'的意思

时间:2023-12-18 23:12:38

转载:https://blog.csdn.net/a19990412/article/details/80149112

这两个都是python的转译字符, 类似于%r, %d,%f

>>> a = '123'
>>> b = 'hello, {!r}'.format(a)
>>> b
"hello, '123'" 上面的例子用的是format,跟直接%效果类似。 >>> a = '123'
>>> b = 'hello, %r' % a
>>> b
"hello, '123'" 这对一部分的对象还是很有用的。r直接反应对象本体。 >>> a = '123'
>>> b = 'hello, %r' % a
>>> b
"hello, '123'" 123的本体就是123。 >>> b = 'hello, !r' % '123'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: not all arguments converted during string formatting
>>>
--------------------- !符号,这个只在fromat中有用,要注意方法。但是效果类似
>>> b = 'hello, %r' % '123'
>>> b
"hello, '123'"
>>> b = 'hello, {!r}'.format( '123')
>>> b
"hello, '123'"

更多操作有时间的话就去挖掘~