Python string literal with quotes

Question:
Create a string literal with the following text:

She said, "Meet you tomorrow."
Assign the string to a variable named vulcan_logic

Answer:
# Correct answer:
vulcan_logic = 'She said, "Meet you tomorrow."'
# You could also write the string like this:
vulcan_logic = "She said, \"Meet you tomorrow.\""