Skip to main content
fixed formatting
Source Link
Vadim Kotov
  • 8.3k
  • 8
  • 51
  • 63

youYou are not putting a " before the end of the line.

useUse """ if you want to do this:

""" a very long string ...... 
....that can span multiple lines
"""

if you want to do this.

you are not putting a " before the end of the line.

use

""" a very long string ...... 
....that can span multiple lines
"""

if you want to do this.

You are not putting a " before the end of the line.

Use """ if you want to do this:

""" a very long string ...... 
....that can span multiple lines
"""
Source Link
aaronasterling
  • 71.5k
  • 20
  • 132
  • 127

you are not putting a " before the end of the line.

use

""" a very long string ...... 
....that can span multiple lines
"""

if you want to do this.