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.
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.