How do you or together all values of a list in Python? I'm thinking something like:
or([True, True, False])
or if it was possible:
reduce(or, [True, True, False])
|
|
|
|
|
|
|
The built-in function
If your Python's version doesn't have
|
|||
|
|
|
|
No one has mentioned it, but "
Then you can use Would always advise " |
||
|
|
|
|
Python 2.5 and up (documentation) |
||
|
|
|
|
reduce should do it for you, shouldn't it?
|
||
|
|
|
|
You can do this:
|
||
|
|