Print a famous quote:
Escape characters can be used in a string to:
- break it up onto new lines
\n - insert tabs
\t - place quotes within the string
\"
print("\"The secret of genius is to carry the spirit of the child into old age, which means never losing your enthusiasm.\"\n\n\t- Aldous Huxley")Using a multi-line string
print('''
The secret of genius is to carry the spirit of the child into old age, which means never losing your enthusiasm."
- Aldous Huxley
''')