标签: python string character-encoding
\201是Python中识别的字符代码。在字符串中忽略这个的最佳方法是什么?
\201
s = '\2016' s = s.replace('\\', '/') print s #6
答案 0 :(得分:-1)
如果你有一个带反斜杠的字符串文字,你可以转义反斜杠:
s = '\\2016'
或者您可以使用" raw"字符串:
s = r'\2016'