2 Answers
+ 3
Thank you so much for your time and consideration đđđ
+ 1
It means that escape characters, that are typed in the string like they are displayed, will get automatically escaped to escape character format.
Like if you typed a new line in docstring just by pressing enter, the newline is not already in the escape character format (\n), but it will be evaluated to that when the program runs.
This string:
"""A
bicycle with wheels of 6' """
Would in runtime get evaluated to:
'A\nbicycle with wheels of 6\' '