Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pep8

Should I always specify an exception type in `except` statements?

python exception pep8

Line continuation for list comprehensions or generator expressions in python

PEP 8, why no spaces around '=' in keyword argument or a default parameter value?

python coding-style pep8

Tool to convert Python code to be PEP8 compliant

python coding-style pep8

Is there a recommended format for multi-line imports?

python python-2.7 pep8

Chained method calls indentation style in Python [duplicate]

How to break a line of chained methods in Python?

python coding-style pep8

Why does Python pep-8 strongly recommend spaces over tabs for indentation? [closed]

python indentation pep8

What's the correct way to sort Python `import x` and `from x import y` statements?

How to write very long string that conforms with PEP8 and prevent E501

python string pep8

What does '# noqa' mean in Python comments?

Why does PEP-8 specify a maximum line length of 79 characters? [closed]

python coding-style pep8

Should I use "camel case" or underscores in Python? [duplicate]

How do I set the maximum line length in PyCharm?

python pycharm pep8

What is PEP8's E128: continuation line under-indented for visual indent?

python sublimetext2 pep8

Pylint, PyChecker or PyFlakes? [closed]

Should import statements always be at the top of a module?

python optimization pep8

Python `if x is not None` or `if not x is None`? [closed]