How do I remove all the backslashes from a string in Python?
This is not working for me:
result = result.replace(\"\\\\\", result)
result = result.replace("\\", "")