In Windows, when using pathlib, is there a way to output the path with a double back slash?
from pathlib import Path
working_directory = Path(r'C:\Downloads')
print(working_directory)
output is C:\Downloads\temp
How do I make the output a double back slash, such as: C:\\Downloads\\temp