How to emulate sum() using a list comprehension?

No; a list comprehension produces a list that is just as long as its input. You will need one of Python’s other functional tools (specifically reduce() in this case) to fold the sequence into a single value.

Leave a Comment