Pythonで複数行のコメントアウト

ダブルクオート三つで囲むのだそうだ。
http://tech.bayashi.jp/archives/entry/techweb/2007/001798.html

こんな風:(WordPressが勝手に引用符のフォントを変えるので注意。あ、codeと指定すれば大丈夫か、、、)

"""
try:
DATAFOLDER = str(raw_input("Complete directory address with DA1 files:"))
except NameError:
print('Error: must be a string')
exit()
except ValueError:
print('Error: must be a string')
exit()
"""

コメントを残す