아미(아름다운미소)

python while 본문

랭귀지/PYTHON

python while

유키공 2018. 9. 27. 14:20
while 반복문으로 리스트의 요소를 출력.
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