0
I want To add a back slash To a string
This don't work,van you help me plz A='hello' B=A+'\' Print(B) Thank you.
2 Réponses
+ 3
Just add another back slash before it
Also print is not capital p
A="hello"
B= A + "\\"
print(B)
+ 1
Thank you it work