Closed
Description
There is mistake related to escape sequences in Python documentation
page link: https://docs.python.org/3/reference/lexical_analysis.html#strings
it shows "\newline" with meaning "Backslash and newline ignored" while using this has no effect in code
print('Hello \newline World!')
outputs: Hello
ewline World!