[Solved] I want to remove ‘\’ from a string in python [duplicate]

[ad_1]

If you have a string:

a="hi how \\are you"

you can remove it by doing:

a.replace('\\','')

>'hi how are you'

If you have a specific context where you are having trouble, I recommend posting a bit more detail.

2

[ad_2]

solved I want to remove ‘\’ from a string in python [duplicate]