会不会因为fr""的顺序错误而出现问题?
can there be problems due to the wrong order in fr""?
我可以在 python 中完成 fr""
和 rf""
。
据我了解,这里的顺序可能很重要,但我想了解是不是这样?
如果是这样,那么我想看一个示例,它会显示可能存在的问题。
听到订单问题也很有趣,包括剩余的 u
和 b
.
比如fbr
,那又如何呢?
f
和 r
的顺序无关紧要。这是我从 docs:
中找到的内容
'f' may be combined with 'r' or 'R', in either order, to produce raw f-string literals. 'f' may not be combined with 'b': this PEP does not propose to add binary f-strings. 'f' may not be combined with 'u'.
我可以在 python 中完成 fr""
和 rf""
。
据我了解,这里的顺序可能很重要,但我想了解是不是这样?
如果是这样,那么我想看一个示例,它会显示可能存在的问题。
听到订单问题也很有趣,包括剩余的 u
和 b
.
比如fbr
,那又如何呢?
f
和 r
的顺序无关紧要。这是我从 docs:
'f' may be combined with 'r' or 'R', in either order, to produce raw f-string literals. 'f' may not be combined with 'b': this PEP does not propose to add binary f-strings. 'f' may not be combined with 'u'.