-2

\201 is a character code recognised in Python. What is the best way to ignore this in strings?

s = '\2016' 
s = s.replace('\\', '/')
print s #6
John Crow
  • 927
  • 3
  • 13
  • 26

1 Answers1

-1

If you have a string literal with a backslash in it, you can escape the backslash:

s = '\\2016'

or you can use a "raw" string:

s = r'\2016'
Robᵩ
  • 163,533
  • 20
  • 239
  • 308