Is there any way to copy a path on Windows that already comes without the inverted slashes"" and come with the normal one "/" so that I don't need everytime to change 1 by 1 ?
If there isn't, is there some way to make python understDand the inverted slashes inside the string?
Path copied right from the Address bar:
print("C:\Users\USER\Documents")
Path that I intend to get:
print("C:/Users/USER/Documents")
Or even with this double slashes:
print("C:\\Users\\USER\\Documents")