- 1
How and with what String do I start building a app
Gatvol
2 Respostas
+ 1
Normaly with a docstring. This is a string at the top of the module, embeded in triple quotes, that gives a descriptien of the modul, like:
“””Hello world!”””
You can reach them via the variable __doc__ .
>>> print(__doc__)
Hello world!
You can have docstings even at other places, to describe for example functions. Read more at PEP 257.
0
Thanx so much. I learn new ways everyday