I have this
bc = 'off'
if c.page == 'blog':
bc = 'on'
print bc
Is there a more pythonic (and/or shorter) way of writing this in python?
|
2
|
I have this
Is there a more pythonic (and/or shorter) way of writing this in python?
|
||||
|
|
|
Shortest one should be:
Generally this might look a bit confusing, so you should only use it when it is clear what it means. Don't use it for big boolean clauses, since it begins to look ugly fast. |
||||||||||||||||||
|
|
|
Another possibility is to use a dict if you can compute the values outside of the function that accesses them (i.e. the values are static, which also addresses the evaluation issue in scrible's answer's comments). want_bc = {True: "on", False: "off"} ...bc = want_bc[c.page == "blog"] I prefer this and/or the tuple indexing solutions under the general rubric of preferring computation to testing. |
||
|
|
|
|
you can use "a = b if c else d" but if you are using a python version prior to 2.5
can do the trick also. |
||
|
|
|
|
This is:
EDIT: As per request, the generalized form is:
Explanation: |
||||||||||||
|
|
|
Well, not being a python guy please take this with a huge grain of salt, but having written (and, with more difficulty, read) a lot of clever code over the years, I find myself with a strong preference now for readable code. I got the gist of what your original code was doing even though I'm a nobody as a Python guy. To be sure, you could hide it and maybe impress a Python wonk or two, but why? |
||||||||||
|
|
|
Or you could use an inline if statement:
There's a bit of a writeup on that feature at this blog, and the relevant PEP is PEP308. The inline if statement was introduced in Python 2.5. This one might be a little less pythonic, but you can use and/or in this fashion:
This one is used more often in lambda statements than on a line by itself, but the form
is similar to
I was going to write out a little bit longer explanation, but they covered it better at Dive into Python. They also noted a couple caveats that you probably need to know. |
||||||||||||||
|