02 | Strings in double quotes
String literals must be enclosed in single quotes or double quotes as in this example.
double_quotes.py
print("Kate Austen")
print("123 Full Circle Drive")
print("Asheville, NC 28899")
Triple quotes are also an option for multiline strings, both double and single:
print("""One
Two
Three""")
print('''One
Two
Three''')