DEV Community

Cover image for How to fix "SyntaxError: unterminated string literal" in Python
Reza Lavarian
Reza Lavarian

Posted on • Originally published at decodingweb.dev

How to fix "SyntaxError: unterminated string literal" in Python

Update: This post was originally published on my blog decodingweb.dev, where you can read the latest version for a 💯 user experience. ~reza

Python raises “SyntaxError: unterminated string literal” when a string value doesn’t have a closing quotation mark.

This syntax error usually occurs owing to a missing quotation mark or an invalid multi-line string. Here’s what the error looks like on Python version 3.11:

File /dwd/sandbox/test.py, line 1
    book_title = 'Head First Python
                 ^
SyntaxError: unterminated string literal (detected at line 1)
Enter fullscreen mode Exit fullscreen mode

On the other hand, the error "SyntaxError: unterminated string literal" means Python was expecting a closing quotation mark, but it didn't encounter any:

# 🚫 SyntaxError: unterminated string literal (detected at line 1)
book_title = 'Head First Python
Enter fullscreen mode Exit fullscreen mode

Adding the missing quotation mark fixes the problem instantly:

# ✅ Correct
book_title = 'Head First Python'
Enter fullscreen mode Exit fullscreen mode

How to fix "SyntaxError: unterminated string literal"

The error "SyntaxError: unterminated string literal" occurs under various scenarios:

  1. Missing the closing quotation mark
  2. When a string value ends with a backslash (\)
  3. Opening and closing quotation marks mismatch
  4. A multi-line string enclosed with " or '
  5. A missing backslash!
  6. Multi-line strings enclosed with quadruple quotes!

Missing the closing quotation mark: The most common reason behind this error is to forget to close your string with a quotation mark - whether it's a single, double, or triple quotation mark.

# 🚫 SyntaxError: unterminated string literal (detected at line 1)
book_title = 'Head First Python
Enter fullscreen mode Exit fullscreen mode

Needless to say, adding the missing end fixes the problem:

# ✅ Correct
book_title = 'Head First Python'
Enter fullscreen mode Exit fullscreen mode

When a string value ends with a backslash (\): Based on Python semantics, a pair of quotation marks work as a boundary for a string literal.

Putting a backslash before a quotation mark will neutralize it and make it an ordinary character. In the programming terminology, it's called an escape character.

This is helpful when you want to include a quotation mark in your string, but you don't want it to interefer with its surrounding quotation marks:

message = 'I\' m good'
Enter fullscreen mode Exit fullscreen mode

That said, if you use the backslash before the ending quotation mark, it won't be a boundary character anymore.

Imagine you need to define a string that ends with a \ like a file path on Windows

# 🚫 SyntaxError: unterminated string literal (detected at line 1)
file_dir = 'C:\files\'
Enter fullscreen mode Exit fullscreen mode

In the above code, the last \ escapes the quotation mark, leaving our string unterminated. As a result, Python raises "SyntaxError: unterminated string literal".

To fix it, we use a double backslash \\ instead of one. It's like using its effect against itself; the first \ escapes the its following backslash. As a result, we'll have our backslash in the string (as an ordinary character), and the quoting effect of ' remains intact.

# ✅ Escaping a slash in a string literal
file_dir = 'C:\files\'
Enter fullscreen mode Exit fullscreen mode

Opening and closing quotation marks mismatch: The opening and closing quotation marks must be identical, meaning if the opening quotation mark is ", the closing part must be " too.

The following code raises the error:

# 🚫 SyntaxError: unterminated string literal (detected at line 1)
book_title = "Python Head First'
Enter fullscreen mode Exit fullscreen mode

No matter which one you choose, they need to be identical:

# ✅ Opening and closing quotation marks match
book_title = 'Python Head First'
Enter fullscreen mode Exit fullscreen mode

A multi-line string enclosed with " or ': If you use ' or " to quote a string literal, Python will look for the closing quotation mark on the same line.

Python is an interpreted language that executes lines one after another. So every statement is assumed to be on one line. A new line marks the end of a Python statement and the beginning of another.

So if you define a string literal in multiple lines, you'll get the syntax error:

# 🚫 SyntaxError: unterminated string literal (detected at line 1)
message = 'Python is a high-level, 
general-purpose 
programming language'
Enter fullscreen mode Exit fullscreen mode

In the above code, the first line doesn't end with a quotation mark.

If you want a string literal to span across several lines, you should use the triple quotes (""" or ''') instead:

# ✅ The correct way of defining multi-line strings
message = '''Python is a high-level, 
general-purpose 
programming language'''
Enter fullscreen mode Exit fullscreen mode

Multi-line strings enclosed with quadruple quotes: As mentioned earlier, to create multi-line strings, we use triple quotes. But what happens if you use quadruple quotes?

The opening part would be ok, as the fourth quote would be considered a part of the string. However, the closing part will cause a SyntaxError.

Since Python expects the closing part to be triple quotes, the fourth quotation mark would be considered a separate opening without a closing part, and it raises the "SyntaxError: unterminated string literal" error.

# 🚫 SyntaxError: unterminated string literal (detected at line 3)
message = ''''Python is a high-level, 
general-purpose 
programming language''''
Enter fullscreen mode Exit fullscreen mode

Always make sure you're not using quadruple quotes by mistake.

A missing slash: Another way to span Python statements across multiple lines is by marking each line with a backslash. This backslash (\) escapes the hidden newline character (\n) and makes Python continue parsing statements until it reaches a newline character.

You can use this technique as an alternative to the triple quotes:

# ✅ The correct way of defining multi-line strings with '\'
message = 'Python is a high-level, \
general-purpose \
programming language'
Enter fullscreen mode Exit fullscreen mode

Now, if you forget the \ in the second line, Python will expect to see the closing quotation mark on that line:

# 🚫 SyntaxError: unterminated string literal (detected at line 2)
message = 'Python is a high-level, \
general-purpose 
programming language'
Enter fullscreen mode Exit fullscreen mode

If you're taking this approach, all lines should end with \, except for the last line, which ends with the closing quotation mark.

✋ Please note: Since the \ is supposed to escape the newline character (the hidden last character), no space should follow the \. If you leave a space after the backslash, the newline character wouldn't be affected, and Python will expect the statement to end on the current line.

Alright, I think it does it. I hope this quick guide helped you solve your problem.

Thanks for reading.


❤️ You might like:

Top comments (0)