What is the way for preventing Python from interpreting \ followed by numbers as something else?
e.g. I get DirectoryNameFromAnotherProgram (say it is equal to 'N:\Some Directory') print DirectoryNameFromAnotherProgram + '1234.txt'
# prints:
# N:\Some DirectoryS4.txt
Since the string with "\"
comes as output from another script, I do not have a choice to change it.