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
addressthat is a multi-line string.
Getting Started with Python
Data Types
Python Functions
Statements in Python
Basic Debugging in Python
Basic Algorithm
Object-Oriented Programming
Error Handling
Intermediate Algorithm
Python Modules