Created
January 24, 2020 17:35
-
-
Save bergpb/cbd87e7809884862cc30478f789edfcb to your computer and use it in GitHub Desktop.
Uso do reduce com Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from functools import reduce | |
| numeros = [1, 2, 3, 6] | |
| def soma(valor, valor2): | |
| return valor + valor2 | |
| resultado = reduce(soma, numeros) | |
| print(resultado) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment