>>> mylist=['a','b','c','d']
>>> for i,j in enumerate(mylist):
... print i,j
...
0 a
1 b
2 c
3 d
>>> for j,i in enumerate(mylist):
... print i,j
...
a 0
b 1
c 2
d 3
>>> for j,i in enumerate(mylist,3):
... print i,j
...
a 3
b 4
c 5
d 6
>>> for j,i in enumerate(3,mylist):
... print i,j
...
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'list' object cannot be interpreted as an index
>>>
추가로 읽을만한 내용
'Coding > Python Matlab' 카테고리의 다른 글
파이썬 - 우분투에 새 버전 설치 사용법 (0) | 2012.12.19 |
---|---|
파이썬 - High-Resolution Mandelbrot in Obfuscated Python (0) | 2012.12.19 |
파이썬 - 외부 프로그램 실행 (4) | 2012.10.12 |
파이썬 - python 2.7 print function usage (0) | 2012.10.10 |
파이썬 - 웹 링크 다운로드 (버퍼) (0) | 2012.03.13 |