Notice
Recent Posts
Recent Comments
Link
아미(아름다운미소)
python while 본문
while 반복문으로 리스트의 요소를 출력.
2
3
4
5
a = [1, 2, 3, 4, 5] i = 0 while i < len(a): print(a[i]) i += 1결과 : 1
2
3
4
5
'랭귀지 > python' 카테고리의 다른 글
Python split() join() (0) | 2018.09.29 |
---|---|
python for에서 인덱스와 요소의 값을 동시에 출력하기 (0) | 2018.09.28 |
python for in list (0) | 2018.09.26 |
python chr (0) | 2018.09.25 |
python strip() (0) | 2018.09.24 |
Comments