def complex(real=0.0, imag=0.0):
"""Form a complex number.
Keyword arguments:
real -- the real part (default 0.0)
imag -- the imaginary part (default 0.0)
"""
>>> def asdf():
... """ hello """
... pass
...
>>> help(asdf)
Help on function asdf in module __main__:
asdf()
hello
asilyatorКонечно же есть! ПМСМ лучшее решение для оформления документации на питоне а также ее перевод в читабельный вид - это sphinx - http://sphinx.pocoo.org/
В питоне нету определенного формата докстрингов, как в яве (@param, @return) или дотнете?