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.

Related questions

0 votes
asked Oct 14, 2021 in Python by rajeshsharma
0 votes
asked Sep 22, 2021 in Python by sharadyadav1986
...