Why does PEP 8 recommend not having spaces around =
in a keyword argument or a default parameter value?
Is this inconsistent with recommending spaces around every other occurrence of =
in Python code?
How is:
func(1, 2, very_long_variable_name=another_very_long_variable_name)
better than:
func(1, 2, very_long_variable_name = another_very_long_variable_name)
Any links to discussion/explanation by Python's BDFL will be appreciated.
Mind, this question is more about kwargs than default values, i just used the phrasing from PEP 8.
I'm not soliciting opinions. I'm asking for reasons behind this decision. It's more like asking why would I use {
on the same line as if
statement in a C program, not whether I should use it or not.
There are pros and cons.
I very much dislike how PEP8 compliant code reads. I don't buy into the argument that
very_long_variable_name=another_very_long_variable_name
can ever be more human readable thanvery_long_variable_name = another_very_long_variable_name
. This is not how people read. It's an additional cognitive load, particularly in the absence of syntax highlighting.There is a significant benefit, however. If the spacing rules are adhered to, it makes searching for parameters exclusively using tools much more effective.
I think there are several reasons for this, although I might just be rationalizing:
a == b
which can also be valid expressions inside a call.IMO leaving out the spaces for args provides cleaner visual grouping of the arg/value pairs; it looks less cluttered.
For me it makes code more readable and is thus a good convention.
I think the key difference in terms of style between variable assignments and function keyword assignments is that there should only be a single
=
on a line for the former, whereas generally there are multiple=
s on a line for the latter.If there were no other considerations, we would prefer
foo = 42
tofoo=42
, because the latter is not how equals signs are typically formatted, and because the former nicely visually separates the variable and value with whitespace.But when there are multiple assignments on one line, we prefer
f(foo=42, bar=43, baz=44)
tof(foo = 42, bar = 43, baz = 44)
, because the former visually separates the several assignments with whitespace, whereas the latter does not, making it a bit harder to see where the keyword/value pairs are.Here's another way of putting it: there is a consistency behind the convention. That consistency is this: the "highest level of separation" is made visually clearer via spaces. Any lower levels of separation are not (because it would be confused with the whitespace separating the higher level). For variable assignment, the highest level of separation is between variable and value. For function keyword assignment, the highest level of separation is between the individual assignments themselves.
I guess that it is because a keyword argument is essentially different than a variable assignment.
For example, there is plenty of code like this:
As you see, it makes completely sense to assign a variable to a keyword argument named exactly the same, so it improves readability to see them without spaces. It is easier to recognize that we are using keyword arguments and not assigning a variable to itself.
Also, parameters tend to go in the same line whereas assignments usually are each one in their own line, so saving space is likely to be an important matter there.
I wouldn't use very_long_variable_name as a default argument. So consider this:
over this:
Also, it doesn't make much sense to use variables as default values. Perhaps some constant variables (which aren't really constants) and in that case I would use names that are all caps, descriptive yet short as possible. So no another_very_...