To typecast a value to boolean, I usually do the following:
not not value
This is faster than using bool. Output from timeit:
python -m timeit '[bool(t) for t in [[], {}, "", 0, [1], {"a": "n"}, "asdf", 2323]]'
1000000 loops, best of 3: 1.81 usec per loop
python -m timeit '[(not not t) for t in [[], {}, "", 0, [1], {"a": "n"}, "asdf", 2323]]'
1000000 loops, best of 3: 1.11 usec per loop
I tried to test it using this:
>>> [bool(t) == (not not t) for t in [None, [], {}, "", 0, [1], {'a': 'n'}, "asdf", 2323]]
[True, True, True, True, True, True, True, True, True]
And it seems to work for most common cases.
Arguments on readability aside, where does this fail, or why would this be a bad thing to do?
%timeit bool and (not not 0)is still faster thanbool(0). – David Wolever Nov 7 '12 at 7:57