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

(새 문서: ==Python== category: Python <source lang='Python'> import functools print( functools.reduce(lambda x, y: x + y, numbers) ) # 21 </source> ==같이 보기== *map *filter...)
 
3번째 줄: 3번째 줄:
==Python==
==Python==
[[category: Python]]
[[category: Python]]
;Python 3
<source lang='Python'>
<source lang='Python'>
import functools
import functools

2014년 8월 21일 (목) 13:05 판


1 Python

Python 3
import functools
print( functools.reduce(lambda x, y: x + y, numbers) )
# 21

2 같이 보기

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