py 8
py 8
if bar:
x = 42
else:
print foo
is analyzed as:
<DEDENT>
The parser than handles the "INDENT" and "DEDENT" tokens as block delimiters.
The spacing should be even and uniform throughout. Improper indentation can cause an
IndentationError or
cause the program to do something unexpected. The following example raises an IndentationError:
a=7
if a > 5:
print "foo"
else:
print "bar"
print "done"
Or if the line following a colon is not indented, an IndentationError will also be raised:
if True:
print "true"
if True:
a=6
b=5
If you forget to un-indent functionality could be lost. In this example None is returned instead of the
expected False:
def isEven(a):
if a%2 ==0:
return True
return False
print isEven(7)
Comments are used to explain code when the basic code itself isn't clear.
Python ignores comments, and so will not execute code in there, or raise syntax errors for plain
English sentences.
Single-line comments begin with the hash character (#) and are terminated by the end of line.
Inline comment:
Comments spanning multiple lines have """ or ''' on either end. This is the same as a multiline string,
but
"""
These are mostly used for documentation of functions, classes and modules.
"""
Docstrings are - unlike regular comments - stored as an attribute of the function they document,
meaning that you
An example function
def func():
return
The docstring can be accessed using the __doc__ attribute:
print(func.__doc__)
help(func)
func()
function.__doc__ is just the actual docstring as a string, while the help function provides general
information
help(greet)
greet(name, greeting='Hello')
Just putting no docstring or a regular comment in a function makes it a lot less helpful.
print(greet.__doc__)
None
help(greet)
A docstring is a multi-line comment used to document modules, classes, functions and methods. It
has to be the
def hello(name):
"""Greet someone.
Print a greeting ("Hello") for the person with the given name.
"""
print("Hello "+name)
class Greeter:
"""
The value of the docstring can be accessed within the program and is - for example - used by the help
command.
Syntax conventions
PEP 257
PEP 257 defines a syntax standard for docstring comments. It basically allows two types:
One-line Docstrings:
According to PEP 257, they should be used with short and simple functions. Everything is placed in
one line, e.g:
def hello():
print("Hello my friends!")
The docstring shall end with a period, the verb should be in the imperative form.
Multi-line Docstrings:
Multi-line docstring should be used for longer, more complex functions, modules or classes.
"""
print(greeting[language]+" "+name)
They start with a short summary (equivalent to the content of a one-line docstring) which can be on
the same line
as the quotation marks or on the next line, give additional detail and list parameters and return
values.
Note PEP 257 defines what information should be given within a docstring, it doesn't define in which
format it
should be given. This was the reason for other parties and documentation parsing tools to specify
their own
standards for documentation, some of which are listed below and in this question.
Sphinx
Sphinx is a tool to generate HTML based documentation for Python projects based on docstrings. Its
markup
language used is reStructuredText. They define their own standards for documentation,
pythonhosted.org hosts a
very good description of them. The Sphinx format is for example used by the pyCharm IDE.
:return: a number
:rtype: int
"""
print(greeting[language]+" "+name)
return 4
Google Python Style Guide
Google has published Google Python Style Guide which defines coding conventions for Python,
including
documentation comments. In comparison to the Sphinx/reST many people say that documentation
according to
The pythonhosted.org page mentioned above also provides some examples for good documentation
according to
Using the Napoleon plugin, Sphinx can also parse documentation in the Google Style Guide-
compliant format.
A function would be documented like this using the Google Style Guide format:
Args:
Returns:
A number.
"""
print(greeting