Jump into concepts and practice - no test required
or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Recall & Review
beginner
What is an escape character in Python?
An escape character is a backslash (\) used before a character to give it a special meaning, like \n for a new line or \t for a tab.
Click to reveal answer
beginner
What does the escape sequence \n do in a Python string?
It creates a new line in the output, moving the text after it to the next line.
Click to reveal answer
beginner
How do you print a double quote (") inside a string in Python?
Use the escape character before the double quote like this: \" inside the string.
Click to reveal answer
beginner
What is the output of this code?
print("Hello\tWorld")
Hello World The \t adds a tab space between Hello and World.
Click to reveal answer
beginner
Why do we need escape characters in strings?
Because some characters like quotes or new lines have special meanings, escape characters let us include them as normal text or control formatting.
Click to reveal answer
Which escape character adds a new line in Python strings?
A\\
B\t
C\"
D\n
✗ Incorrect
The escape character \n moves the text to a new line.
How do you include a backslash character in a Python string?
A\\
B\n
C\t
D\"
✗ Incorrect
Use \\ to print a single backslash because \ is the escape character.
What will print("She said \"Hi\"") output?
AShe said \"Hi\"
BShe said "Hi"
CShe said Hi
DError
✗ Incorrect
The \" escapes the quotes so they appear in the output.
Which escape character adds a tab space in output?
A\r
B\n
C\t
D\b
✗ Incorrect
The \t adds a horizontal tab space.
What does the escape character \r do in Python strings?
ACarriage return (moves cursor to start of line)
BTab space
CBackspace
DNew line
✗ Incorrect
The \r moves the cursor to the start of the line, overwriting text.
Explain what escape characters are and why they are useful in Python output.
Think about how to show quotes or new lines inside text.
You got /3 concepts.
Describe how to print a string that includes both double quotes and a new line using escape characters.
Combine \" and \n inside the string.
You got /3 concepts.
Practice
(1/5)
1. What does the escape character \n do in a Python string?
easy
A. Ends the string
B. Inserts a tab space
C. Prints a backslash character
D. Starts a new line in the output
Solution
Step 1: Understand escape characters
Escape characters are special sequences starting with a backslash that change how text is displayed.
Step 2: Identify the effect of \n
The sequence \n means a new line, so it moves the cursor to the next line when printing.
Final Answer:
Starts a new line in the output -> Option D
Quick Check:
\n = new line [OK]
Hint: Remember \n means new line, like pressing Enter [OK]
Common Mistakes:
Confusing \n with tab space
Thinking \n prints literally as \n
Mixing up \n with backslash
2. Which of the following is the correct way to print a backslash character in Python?
easy
A. print("/\")
B. print("\\")
C. print("\")
D. print("\n")
Solution
Step 1: Recognize backslash escape
Backslash is an escape character, so to print it literally, you must escape it with another backslash.
Step 2: Check each option
print("\\") uses \\ which prints a single backslash. print("\") is invalid syntax. print("/\") mixes slash and backslash incorrectly. print("\n") prints a new line, not a backslash.
Final Answer:
print("\\") -> Option B
Quick Check:
Double backslash prints one backslash [OK]
Hint: Use double backslash \\ to print one backslash [OK]
Common Mistakes:
Using a single backslash causes syntax error
Confusing forward slash / with backslash \
Expecting \n to print a backslash
3. What will be the output of this code?
print("Hello\nWorld\t!")
medium
A. Hello\nWorld\t!
B. Hello
World !
C. Hello
World !
D. Hello World !
Solution
Step 1: Interpret escape sequences in the string
\n creates a new line, so "Hello" and "World" appear on separate lines. \t adds a tab space before the exclamation mark.
Step 2: Visualize the output
The output shows "Hello" on the first line, then "World" followed by a tab space and "!" on the second line.
Final Answer:
Hello
World ! -> Option C
Quick Check:
\n = new line, \t = tab space [OK]
Hint: \n breaks line, \t adds spaces like tab [OK]
Common Mistakes:
Printing escape sequences literally instead of interpreting
Ignoring tab space effect
Confusing \n with space
4. Find the error in this code snippet:
print("She said, "Hello!"")
medium
A. Missing escape characters for inner quotes
B. Incorrect use of single quotes
C. Extra parentheses in print
D. No error, code runs fine
Solution
Step 1: Analyze string quotes
The string uses double quotes outside and inside without escaping inner quotes, causing syntax error.
Step 2: Fix by escaping inner quotes
Inner quotes around "Hello!" must be escaped as \"Hello!\" or use single quotes outside.
Final Answer:
Missing escape characters for inner quotes -> Option A
Quick Check:
Escape inner quotes to avoid syntax error [OK]
Hint: Escape inner quotes with \" or use single quotes outside [OK]
Common Mistakes:
Not escaping inner quotes causes syntax error
Using mismatched quotes
Assuming print syntax error instead of string error
5. You want to print this exact text including quotes and backslash:
He said: "Use \n for new lines."
Which print statement will produce this output?
hard
A. print("He said: \"Use \\n for new lines.\"")
B. print('He said: "Use \\n for new lines."')
C. print("He said: 'Use \n for new lines.'")
D. print('He said: "Use \n for new lines."')
Solution
Step 1: Identify required output characters
The output must include double quotes around the phrase and a literal backslash followed by n (not a new line).
Step 2: Escape quotes and backslash correctly
Double quotes inside string must be escaped as \". Backslash must be escaped as \\ to print literally. So \\n prints \n, not newline.
Step 3: Check options
print("He said: \"Use \\n for new lines.\"") correctly escapes inner quotes and backslash. print('He said: "Use \\n for new lines."') uses single quotes outside but escapes inner quotes unnecessarily and may cause confusion. print("He said: 'Use \n for new lines.'") uses single quotes inside output, not double quotes. print('He said: "Use \n for new lines."') prints \n as newline, not literal.
Final Answer:
print("He said: \"Use \\n for new lines.\"") -> Option A
Quick Check:
Escape quotes and backslash to print exactly [OK]
Hint: Escape " as \" and \ as \\ to print literally [OK]