I need to add several paths into a single line string with a \n character at the end. For convenience, The key word r is added at the front of the string. In this case the character '\n' couldn't be display normally.
Ex.
str_output = r'name = %(name)s, some_dir = \\folder0\\..., description = "%(des)s\n'
print(str_output % {'name':'new', 'des':'new add one'})
The out put will display without line break. Currently I use string plus to by pass this problem. Such as:
str_output = r'name = %(name)s, some_dir = \\folder0\\..., description = "%(des)s' + '\n'
Instead of the previous define of str_output. I'm curious about is there any other convenience way to do this? The string plus looks ugly in my codes. Thank you!
rin front of the string - it treats each character literally and escape sequences aren't escaped. – Volatility Feb 20 at 7:15r'\n'is the same as'\\n', which prints'\n'and not a newline character. – Volatility Feb 20 at 8:10