Free views, likes and subscribers at YouTube. Now!
Get Free YouTube Subscribers, Views and Likes

Python reduce ♻️

Follow
Bro Code

Python reduce function tutorial example explained

#python #reduce #function

reduce() = apply a function to an iterable and reduce it to a single cumulative value.
performs function on first two elements and repeats process until 1 value remains
# reduce(function, iterable)

import functools

letters = ["H","E","L","L","O"]
word = functools.reduce(lambda x, y,:x + y,letters)
print(word)

factorial = [5,4,3,2,1]
result = functools.reduce(lambda x, y,:x * y,factorial)
print(result)

Bro Code merch store :
===========================================================
https://teespring.com/stores/brocode5
===========================================================

posted by ostaklimh0