Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

on python - not anymore, since 2.5 (probably earlier) you can do:

(x if cond else y) which is essentially (cond ? x : y)



Definite improvement! Thanks for the information.


The previous ternary hack in Python (which was still relatively elegant) was:

a = ("False", "True")[condition]

It's a little fugly -- but if you know the basic semantics of Python, it's quite readable. It is nice that we have a proper ternary now, though.


Actually I think the more common hack was

    a = cond and x or y
which had the downside that if the second part (in this case x) evaluates to False then a ends up equal to y even through that's not what you were trying to do. Sometimes this is a problem and sometimes not, but it's been irrelevant for the past few years.


Very true. I've seen that hack before, but I guess I mentally settled on my first example (probably due to the irksome possibility of x=0\False).

Unfortunately, there were probably more hacks than our two examples. Thank goodness Guido (etc) settled on a real ternary semantic -- we were heading into Perl more-than-9000-ways-to-do-something territory!




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: