14,974
edits
m (Protected "Comment Syntax" ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite))) |
|||
| Line 76: | Line 76: | ||
</pre> | </pre> | ||
Python: [http://ipython.org/notebook.html The IPython Notebook]<ref>[http://nbviewer.ipython.org/urls/raw.github.com/ricardoduarte/python-for-developers/master/Chapter2/Chapter2_Syntax.ipynb Python for Developers - Chapter 2: Syntax]</ref> | Python: [http://ipython.org/notebook.html The IPython Notebook]<ref>[http://nbviewer.ipython.org/urls/raw.github.com/ricardoduarte/python-for-developers/master/Chapter2/Chapter2_Syntax.ipynb Python for Developers - Chapter 2: Syntax]</ref><ref>[http://stackoverflow.com/questions/7696924/multiline-comments-in-python Multiline comments in Python - Stack Overflow]</ref> | ||
<pre> | <pre> | ||
# single line comment | # single line comment | ||
</pre> | |||
<pre> | |||
''' | |||
This is the multiline | |||
comments. | |||
''' | |||
</pre> | </pre> | ||