vote up 4 vote down star
2

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?

flag

59% accept rate
1  
Do you have to use 'on' and 'off'? Could this info be repesented with just a boolean, I mean bc = (c.page == 'blog') is much better. – kaizer.se Aug 23 at 21:19

6 Answers

vote up 19 vote down check

Shortest one should be:

bc = 'on' if c.page=='blog' else 'off'

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.

link|flag
5  
That's ok for software using Python 2.5 and greater – iElectric Aug 23 at 18:36
3  
<2.5 compatibility was not mentioned in question ;) – freiksenet Aug 23 at 18:37
Still worth mentioning. – Triptych Aug 23 at 20:21
1  
I'll have to argue about the "shortest" claim (see my answer for a shorter one). – scrible Aug 23 at 20:40
1  
Shortest readable :) – freiksenet Aug 24 at 4:06
show 1 more comment
vote up 0 vote down

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.

link|flag
vote up 1 vote down

you can use "a = b if c else d" but if you are using a python version prior to 2.5

bc = c.page == "blog" and "on" or "off"

can do the trick also.

link|flag
vote up 13 vote down

This is:

  1. definitely shorter
  2. arguably Pythonic (pre-Python 2.5, which introduced the controversial X if Z else Y syntax)
  3. questionably readable. With those caveats in mind, here it goes:

    bc = ("off","on")[c.page=="blog"]
    

EDIT: As per request, the generalized form is:

   result = (on_false, on_true)[condition]

Explanation: condition can be anything that evaluates to a Boolean. It is then treated as an integer since it is used to index the tuple: False == 0, True == 1, which then selects the right item from the tuple.

link|flag
Fascinating. As with another one above, could you generalize that a bit more and explain it? (As in ... you weren't kidding about #3). – lilbyrdie Aug 23 at 20:46
("off", "on") is a tuple and c.page=="blog" evaluates to the index of the element that is being accessed – Otto Allmendinger Aug 23 at 20:58
1  
I wanted to vote down because it's really ugly, then I remembered that I used it myself. – kaizer.se Aug 23 at 21:16
1  
This is what I use when 2.5 isn't available; I find ‘and...or’ unacceptable as it reads weirdly and fails if the and-value is something that isn't truthy. The drawback of ‘(a, b)[cond]’ is that both a and b are evaluated, so you can't rely on shortcutting, which means you can't convert a construct like “'nothing' if item is None else item.name”. – bobince Aug 23 at 22:20
vote up 15 vote down

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?

link|flag
4  
I agree entirely. Write for readability! – Gary Willoughby Aug 23 at 19:08
C people use i++. Pythonic if can be used as shorthand for obvious conditionals as i++ or i+= can be used as shorthand for obvious operations. – freiksenet Aug 23 at 19:22
@freiksenet: I think a better comparison is using the ?: statements in other languages for short, simple -- inline -- conditionals. And, arguably, those can make the code more readable rather than cluttering it up with extra lines that add no functionality. – lilbyrdie Aug 23 at 20:50
Just FYI, "Pythonic" is a term that promotes readability over terseness. – TM Sep 21 at 5:53
vote up 9 vote down

Or you could use an inline if statement:

>>> cpage = 'blog'
>>> bc = 'on' if cpage == 'blog' else 'off'
>>> bc
'on'
>>> cpage = 'asdf'
>>> bc = 'on' if cpage == 'blog' else 'off'
>>> bc
'off'

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:

>>> cpage = 'asdf'
>>> bc = (cpage == 'blog') and 'on' or 'off'
>>> bc
'off'
>>> cpage = 'blog'
>>> bc = (cpage == 'blog') and 'on' or 'off'
>>> bc
'on'

This one is used more often in lambda statements than on a line by itself, but the form

 A and B or C

is similar to

   if A:
       return B
   else:
       return C

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.

link|flag
1  
Second one looks really confusing. Can you please expand answer to explain why it works like this? – freiksenet Aug 23 at 18:43
1  
Thanks for explanation. It still is very unreadable for me. I think first option is better. – freiksenet Aug 23 at 19:21
The second option is what people used before we got the first one, on those occasions when cramming things io one line was more important than readability.. – John Fouhy Aug 23 at 22:21
That second one surely gets a low score for readability. Not Pythonic. – Craig McQueen Aug 24 at 0:38
The and/or approach used to be the Pythonic way of doing a conditional in a lambda, until PEP308. See the first two paragraphs of the PEP: python.org/dev/peps/pep-0308 – Mark Rushakoff Aug 24 at 2:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.