Python auto escape in lists

225 Views Asked by At

Is there a way to prevent the auto escape of \ in lists? Because when I try to print or use writelines to write a list content in a file, all of the back slashes get escaped.

1

There are 1 best solutions below

0
On

I think you can undo the repr() here with ast.literal_eval() (requires import ast), I saw that in another post and I hope this is the best way to solve it.