William Mayor writes:

>> I think it would be nice to have a way of getting the 'true' value as
>> the return with an optional value if false.  The desire comes about
>> when the thing I'm comparing is an element of a collection:
>> 
>>        drugs['choice'] if drugs['choice'] else 'pot'
>> 
>> Then I'm tempted to do:
>> 
>>      chosen = drugs['choice']
>>      chosen if chosen else 'pot'
>> 
>> I sometimes feel like doing:
>> 
>>      drugs['choice'] else 'pot'
>> 
>
> For the case where the element in the collection exists, but might be
> falsey you could do:
>
>       drugs[‘choice’] or ‘pot'

drugs.get('choice') or 'pot'

drugs.get('choice', 'pot')

[snip]
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to