如何处理包含字符代码的字符串?

时间:2016-11-21 23:32:29

标签: python string character-encoding

\201是Python中识别的字符代码。在字符串中忽略这个的最佳方法是什么?

s = '\2016' 
s = s.replace('\\', '/')
print s #6

1 个答案:

答案 0 :(得分:-1)

如果你有一个带反斜杠的字符串文字,你可以转义反斜杠:

s = '\\2016'

或者您可以使用" raw"字符串:

s = r'\2016'