0 votes
in Python by
What are the escape sequences in Python?

1 Answer

0 votes
by

Python strings, the backslash “\” could be a special character, also called the “escape” character. it’s utilized in representing certain whitespace characters: “\t” may be a tab, “\n” could be a newline, and “\r” could be a printing operation. Conversely, prefixing a special character with “\” turns it into a standard character.

...