본문 바로가기

Python/Python 어렵게 배우기

Python 어렵게 배우기 - Exercise 34: Accessing Elements of Lists

원문 : http://learnpythonthehardway.org/book/ex34.html


python 에서 list의 각 원소의 값을 가져올 때는

animals = ['bear', 'tiger', 'penguin', 'zebra']
animail = animals[0]

형태로 가져온다.


주의 할 점은 list의 index는 0 부터 시작한다는 것이다.


그러니까 첫번째 값을 가져올때는 animals[0], 두번째 값을 가져올때는 animals[1]...


뭐 대부분의 언어가 배열은 0 부터 시작하니까 다른 언어를 공부한 적이 있다면 이해하기 어렵진 않을듯




반응형