"함수 reduce()"의 두 판 사이의 차이

5번째 줄: 5번째 줄:
;Python 3
;Python 3
<source lang='Python'>
<source lang='Python'>
import functools
from functools import reduce
print( functools.reduce(lambda x, y: x + y, numbers) )
product = reduce((lambda x, y: x * y), [1, 2, 3, 4])
# 21
# 24
</source>
</source>



2017년 11월 24일 (금) 22:07 판

reduce

1 Python

Python 3
from functools import reduce
product = reduce((lambda x, y: x * y), [1, 2, 3, 4])
# 24

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}