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

转载:

这两个都是python的转译字符python s ixusr,类似于%r, %dpython s ixusr,%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'"

更多操作有时间的话就去挖掘~
posted @ 2019-04-25 17:51筱筱的春天 阅读(...) 评论(...) 编辑
本文来自电脑杂谈,转载请注明本文网址:
http://www.pc-fly.com/a/shumachanpin/article-128356-1.html
宣布独立试试
几艘渔船就把问题解决了