# The r means that the string is to be treated as a raw string, which means all escape codes will be ignored.
# For an example: '\n' will be treated as a newline character, while r'\n' will be treated as the characters \ followed by n .
>>> print("{}\n{}".format("a", "b"))
a
b
>>> print(r"{}\n{}".format("a", "b"))
a\nb
What does 'r' mean in Python?
|
2020.01.18 00:22:04
|
2020.01.24 18:46:50
|
379
|
Aiden
Total of Attached file
0.00 Bytes of 0 files
2020.02.29
2020.02.16
2020.02.01
2020.02.01
2020.01.24
2020.01.18
2020.01.17
2020.01.12
2019.09.25
2019.09.24