|
New - Conditional expressions in Python 2.5
Python has always been described as a "tight" language in that new syntaxes are only added with a great deal of thought, and then only if they provide a significant benefit without diluting the crispness of the language.
There have been long discussions in the Python world about adding in a conditional operator - something that gives and easier form to an if / else construct that's used only to set a variable to one of two alternative values. Now, in release 2.5 which went out to Beta release in the last few days, such a facility has been added.
Suppose you have a variable called stock_level and you want to set up another variable (for output) with the word "is" or "are" in it, depending on whether the stock level is 1 or something else, you can write (as from Python 2.5):
word = "is" if stock_level == 1 else "are"
which is much shorter that the alternative so far available:
if stock_level == 1:
word = "is"
else:
word = "are"
For anyone with a Perl, PHP, C or Java backgrond, this new syntax is the moral equivalent of the ? : operator. After long discussion, Guido van Rossum decided for the syntax shown above ... amongst the reasons for this surprising choice are the fact that the ":" character is already very significant in Python and although the syntax rules would have allowed Python to follow the other languages, resultant code would not have been clear and easy to follow. (written 2006-07-01 07:39:27)
Associated topics are indexed under Y103 - Python - Conditionals and Loops
Some other Articles
Is Java the right language to learn?Strange housewarmingShadow Transport Minister to visit MelkshamHot answers in PHPNew - Conditional expressions in Python 2.5Tk - laying out your GUI with frames, pack and gridFirst Light, Bootle Docks, LiverpoolRunning external processes in Tcl and Tcl/TkWhich way to turn?Good follow up ... my thanks
|
2259 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46 at 50 posts per page
This is a page archived from The Horse's Mouth at
http://www.wellho.net/horse/ -
the diary and writings of Graham Ellis.
Every attempt was made to provide current information at the time the
page was written, but things do move forward in our business - new software
releases, price changes, new techniques. Please check back via
our main site for current courses,
prices, versions, etc - any mention of a price in "The Horse's Mouth"
cannot be taken as an offer to supply at that price.
Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).
|
|