Double quotes in string
If your string includes double quotes, then use single quotes to define the string.
display_quote.py
Using single quotes:
print('Your assignment is to read "Hamlet" by tomorrow.')
Escaping double-quotes within double quotes:
print("Your assignment is to read \"Hamlet\" by tomorrow.")