なぜ見つからないのかわかりませんが'\'
、pythonの特殊文字を置き換えたかったのです。
文字列内に文字列があり'\'
ますが、解決策を見つけて「-」に置き換える自信があります。これは、交換しようとしているときに起こっていることです。
>>> x = 'hello\world'
>>> x
'hello\\world'
>>> x.replace('\', '-')
File "<stdin>", line 1
x.replace('\', '-')
SyntaxError: EOL while scanning string literal
編集: Eclipse IDLEでこれを試してください
x = 'hello\world'
print x
x.replace('\\', '-')
print x
出力:
hello\world
hello\world