for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
"""
Module description.
Some more foobar-like text.
def foobar_explosion(radius):
A nice and neat way of documenting code.
:param radius: The explosion radius.
return 55 * radius
Docstring with layouted text.
layouts inside docs are preserved for these documentation styles.
this is intended.
""" Docstring directly besides triple quotes.
Continues here. """
## Alternate documentation style in doxygen.
# Subtext
# More subtext (not correctly aligned)
# sub-sub-text
#
def foobar_travel(country):
print("foobar likes to travel to " + country)
smile = ":)"
return smile
"""super
nicely
short"""