Snippets tagged “triple-quotes”
2 snippets use this tag.
- How do I create multiline comments in Python?Python
In Python, you can create a multiline comment using triple quotes (either single or double) at the beginning and end of the comment.
- How do I split the definition of a long string over multiple lines?Python
You can split a string over multiple lines by using triple quotes, either ''' or """ .