|
|
|
|
|
by orf
1992 days ago
|
|
> all(map(func3, filter(func2, map(func1, zip(a, b))))) You definitely wouldn’t do this in “traditional Python”. You’d use a comprehension of some kind, or even the walrus operator, which is quite possibly faster and more readable than several chained lambdas. |
|