Editor settings

General settings

Save settings

Learn to program with Python

Create multi-line strings #

You can use triple single-quotes ''' or triple double-quotes """ to create a string that spans multiple lines:

multiline_string = """
This is a
multiline
string!
"""

Exercise #

  • Create a variable address that is a multi-line string.
No need to use your real address for this exercise.
Output will be displayed here