Python Tutorials · Python Strings

Escape Characters

Learn all about Escape Characters in this comprehensive tutorial.

5 min read beginner
  • To insert characters that are illegal in a string, use an escape character.
  • Other escape characters used in Python:

Escape Character

To insert characters that are illegal in a string, use an escape character.

An escape character is a backslash \ followed by the character you want to insert.

An example of an illegal character is a double quote inside a string that is surrounded by double quotes:

python

To fix this problem, use the escape character \":

python

Escape Characters

Other escape characters used in Python:

CodeResultTry it
\'Single QuoteTry it »
\\BackslashTry it »
\nNew LineTry it »
\rCarriage ReturnTry it »
\tTabTry it »
\bBackspaceTry it »
\fForm Feed
\oooOctal valueTry it »
\xhhHex valueTry it »

Module quiz

2 questions
1

Which of the following is true about Escape Characters?

2

What is the most common pitfall when working with Escape Characters?

Answer all questions to submit.