**Example:** ```py def square(n): '''Takes in a number n, returns the square of n''' return n**2 ``` > You can use a linter to pep8patise your code (`pylint`, `flake8`)
Example: