RosettaCodeData/Task/Comments/Python/comments-2.py
2023-07-01 13:44:08 -04:00

9 lines
372 B
Python

"""Un-assigned strings in triple-quotes might be used
as multi-line comments
"""
'''
"triple quoted strings" can be delimited by either 'single' or "double" quote marks; and they can contain mixtures
of other quote marks without any need to \escape\ them using any special characters. They also may span multiple
lines without special escape characters.
'''