DEV Community

Discussion on: Simplify DevOps with Jupyter Notebook

Collapse
 
linevych profile image
Anton Linevych • Edited

For consistency, always use """triple double quotes""" around docstrings. Use r"""raw triple double quotes""" if you use any backslashes in your docstrings. For Unicode docstrings, use u"""Unicode triple-quoted strings""".

python.org/dev/peps/pep-0257/

Collapse
 
amit1rrr profile image
Amit Rathi

Sure :)

Thanks for the link.