I'm using the following code to read a file into a string, but I want to read it as is, without escaping any characters.
for sheet in style_sheet_list:
with open (DJANGO_ROOT + "/assets/css/" + sheet + ".css", "r") as myfile:
style_sheets+=myfile.read()
style_sheets+="\n"
return style_sheets
For example, I get:
"\f05c";
Instead of:
"\f05c";
How can I do this?