reduce empty list
from functools import reduce
numbers = []
print(reduce(lambda x,y: x+y, numbers))
# TypeError: reduce() of empty sequence with no initial value
Output:
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
from functools import reduce
numbers = []
print(reduce(lambda x,y: x+y, numbers))
# TypeError: reduce() of empty sequence with no initial value
Output: