What causes "syntaxerror: eol while scanning string literal" in python?

Example:

print("Hello)
This error indicates that a string literal wasn't closed properly.

Solution:

print("Hello")

Beginner's Guide to Python