(→같이 보기) |
Jmnote bot (토론 | 기여) 잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>)) |
||
3번째 줄: | 3번째 줄: | ||
;파이썬 sum() | ;파이썬 sum() | ||
< | <syntaxhighlight lang='python' run> | ||
numbers = [1, 2, 3, 4] | numbers = [1, 2, 3, 4] | ||
print( sum(numbers) ) | print( sum(numbers) ) | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang='python' run> | ||
numbers = (1, 2, 3, 4, 5) | numbers = (1, 2, 3, 4, 5) | ||
print( sum(numbers) ) | print( sum(numbers) ) | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang='python' run> | ||
numbers = [1, 2, 3, 4] | numbers = [1, 2, 3, 4] | ||
print( sum(numbers, 10) ) | print( sum(numbers, 10) ) | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang='python' run> | ||
numbers = (1, 2, 3, 4, 5) | numbers = (1, 2, 3, 4, 5) | ||
print( sum(numbers, 8) ) | print( sum(numbers, 8) ) | ||
</ | </syntaxhighlight> | ||
==같이 보기== | ==같이 보기== |
2021년 4월 8일 (목) 02:45 기준 최신판
1 개요[ | ]
- Python sum()
- 파이썬 sum()
Python
Copy
numbers = [1, 2, 3, 4]
print( sum(numbers) )
Loading
Python
Copy
numbers = (1, 2, 3, 4, 5)
print( sum(numbers) )
Loading
Python
Copy
numbers = [1, 2, 3, 4]
print( sum(numbers, 10) )
Loading
Python
Copy
numbers = (1, 2, 3, 4, 5)
print( sum(numbers, 8) )
Loading
2 같이 보기[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.