RosettaCodeData/Task/Comments/Python/comments-2.py

10 lines
372 B
Python
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
"""Un-assigned strings in triple-quotes might be used
as multi-line comments
"""
2013-10-27 22:24:23 +00:00
'''
"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.
'''