If we want to include a line break in a string, we can't just hit return because that'd end the statement. What we need is a so-called escape character.

Great! \n adds an invisible character to the string that produces a line break when we use it in the print() method.

While \" escapes the quote, that's not what we're trying to achieve, is it?