Python Escape Codes (1)
Python Escape Codes (1)
com/python/gloss_python_esc
ape_characters.asp
Example
You will get an error if you use double quotes inside a string that is surrounded
by double quotes:
Example
The escape character allows you to use double quotes when you normally would
not be allowed:
Page 1 of 6
\' Single Quote Try it
»
\\ Backslash Try it
»
\t Tab Try it
»
\b Backspace Try it
»
\f Form Feed
Page 2 of 6
Related Pages
Strings Strings are Arrays Slicing a String Negative Indexing on a String String
❮ Python Glossary
https://cscircles.cemc.uwaterloo.ca/3-comments-literals/
Page 3 of 6
Run program
Because the second line started with a # sign, Python totally ignored that line, and as you
can see, the number 2 was not printed. Common uses for comments include:
▪ explaining parts of the program, for you or other people to read later;
▪ leaving "to do" notes, when you write a longer program;
▪ temporarily disabling ("commenting out") a line of a program without totally deleting
it, so that it is easier to put back in later.
Here is an exercise to illustrate. If you edit the code too much and want to bring back the
default version of the code, select Reset code to default.
Run program
Strings
Strings are sequences of letters and numbers, or in other words, chunks of text. They are
surrounded by two quotes for protection: for example in Lesson 0 the part "Hello, World!" of
the first program was a string. If a pound sign # appears in a string, then it does not get
treated as a comment:
Example
A string containing the # sign.
myStr = "To
print(myStr)
Run program
This behaviour is because the part inside the quotes "" is a string literal, meaning that it
should be literally copied and not interpreted as a command. Similarly, print("3 + 4") will not
print the number 7, but just the string 3 + 4.
Escape Sequences
Page 4 of 6
What if you want to include the quote character " inside of a string? If you try to execute
print("I said "Wow!" to him") this causes an error: the problem is that Python sees one string "I
said " followed by something Wow! which is not in the string. This is not what we intended!
Python does have two simple ways to put quote symbols in strings.
▪ You are allowed to start and end a string literal with single quotes (also known as
apostrophes), like 'blah blah'. Then, double quotes can go in between, such as 'I said
"Wow!" to him.'
▪ You can put a backslash character followed by a quote (\" or \'). This is called an
escape sequence and Python will remove the backslash, and put just the quote in the
string. Here is an example.
Example
The backslashes protect the quotes, but are not printed.
print('Here\'
print("This is
Run program
Check answer
Page 5 of 6
Note: there is more than one way to do this (as usual)! For example, you could enclose the
whole string in single quotes, or in double quotes. In either case, escaping is needed. For
extra practice, solve the problem one way, and then solve it the other way. Can you solve it
a third way?
Run program
Page 6 of 6