"언어별 이터레이터"의 두 판 사이의 차이

3번째 줄: 3번째 줄:


==Python==
==Python==
[[category: Python']]
[[category: Python]]
<source lang='dos'>
<source lang='Python'>
s = 'abc'
s = 'abc'
it = iter(s)
it = iter(s)

2014년 8월 22일 (금) 09:13 판

iter

Python

s = 'abc'
it = iter(s)
ch = next(it)
print( ch ) # a
ch = next(it)
print( ch ) # b
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}