티스토리 뷰

python

for문 index 기억하기

on1ystar 2019. 6. 3. 22:07
728x90
반응형

enumerate

 

반복문 사용 시 몇 번째 반복문인지 확인이 필요할 때

인덱스 번호와 리스트의 원소를 tuple 형태로 반환

 

t = [1, 5, 7, 33, 39, 52]
>>> for p in enumerate(t):
...     print(p)
... 
(0, 1)
(1, 5)
(2, 7)
(3, 33)
(4, 39)
(5, 52)
728x90
반응형

'python' 카테고리의 다른 글

python *(Asterisk) 이용 , iterable  (0) 2019.06.24
python zip()  (0) 2019.06.24
UBUNTU 16.04 python 3.5.2 -> 3.7.0  (0) 2019.05.12
IndentationError: unindent does not match any outer indentation level  (0) 2019.04.14
Python 진법 변환  (0) 2019.03.31
댓글