How do I remove all the backslashes from a string in Python?
This is not working for me:
result = result.replace(\"\\\\\", result)
If you are interested in seeing the component words that are being separated by the '\' character, use:
result.replace('\\', ' ')