본문 바로가기
Programming/Python

Python: SyntaxError: EOL while scanning string literal

by 빅경 2024. 11. 18.
728x90
반응형

 

Python: SyntaxError: EOL while scanning string literal

 

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

"""

728x90
반응형