I'm learning Django, so be gentle with me.
I have this code here, in my Settings.py-file:
STATICFILES_DIRS = (
os.path.join(BASE_DIR, "static"),
)
print("STATICFILES_DIRS ", STATICFILES_DIRS[0] )
print("STATICFILES_DIRS ", STATICFILES_DIRS )
I don't understand the result, which is this:
STATICFILES_DIRS C:\path\to\static\folder
STATICFILES_DIRS ('C:\\path\\to\\static\\folder',)
Why do the double-backslashes appear, when I print the tuple? Is it because it's 'escaping-the-next-character'?