RosettaCodeData/Task/Comments/Python/comments-2.py
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00: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.
'''