Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
实际上,我在字符串操作方面遇到了一些问题......我想要一个像这样的字符串,例如“Hel\'lo”,但是,如你所知,如果我尝试打印这个字符串,python 将返回“ hello”而不是“hell\'lo”...
那么,您知道一种获得这种形式的字符串的方法吗?
提前致谢
您可以使用原始字符串(注意前导r):
r
>>> print(r"hel\'lo") hel\'lo
请参阅原始字符串和字节文字。
一直如此。双反斜杠。
3>> print("hel\\'lo") hel\'lo