# ukázka dokumentačního řetězce (docstring) def do_nothing(): """This does nothing. This really does nothing, but does so very efficiently.""" pass # zkuste si: # >>> help(do_nothing) # >>> print(do_nothing.__doc__)