2014년 10월 7일 화요일

파이썬 기초 강좌 - 이번에는 리스트 형식을 살펴봅니다.

리스트는 값의 나열입니다. 순서가 존재하며 여러 종류의 값을 담을 수 있습니다. []로 표기된 것에 주의합니다.

>>> colors = ['red', 'green', 'gold']
>>> colors
['red', 'green', 'gold']
>>> type(colors)
<type 'list'>
>>>
>>> colors.append('blue')
>>> colors
['red', 'green', 'gold', 'blue']
>>>
>>> colors.insert(1, 'black')
>>> colors
['red', 'black', 'green', 'gold', 'blue']
>>> colors.extend(['white', 'gray'])
>>> colors
['red', 'black', 'green', 'gold', 'blue', 'white', 'gray']
>>>
>>> colors.index('red')
0
>>> colors += ['red']
>>> colors
['red', 'black', 'green', 'gold', 'blue', 'white', 'gray', 'red']
>>> colors += 'red'
>>> colors
['red', 'black', 'green', 'gold', 'blue', 'white', 'gray', 'red', 'r', 'e', 'd']
>>> colors.index('red', 1) ==> 2번째 red를 찾기한다.
7
>>> colors
['red', 'black', 'green', 'gold', 'blue', 'white', 'gray', 'red', 'r', 'e', 'd']
>>> colors.count('red')
2
>>> colors.pop() ==>끄집어 낸다.
'd'
>>> colors.pop()
'e'
>>> colors.pop(1)
'black'
>>> colors
['red', 'green', 'gold', 'blue', 'white', 'gray', 'red', 'r']
>>> colors.remove('gold') ==>단순하게 삭제만 한다.
>>> colors
['red', 'green', 'blue', 'white', 'gray', 'red', 'r']
>>> colors.sort()
>>> colors
['blue', 'gray', 'green', 'r', 'red', 'red', 'white']
>>> colors.reverse()
>>> colors
['white', 'red', 'red', 'r', 'green', 'gray', 'blue']
>>>

댓글 없음:

댓글 쓰기

참고: 블로그의 회원만 댓글을 작성할 수 있습니다.

'일론 머스크' '젠슨 황' AI 리더들, 그들의 성공 비결은 바로 이것 - 누가 부자가 되는가 영상입니다. ㅎㅎ

  책을 통해서만 접했던 내용들을 영상으로 보니 더 실감이 납니다. KBS에서 방송된 내용인데 주말에 보시면 좋은 영상입니다. 엔비디아의 주가가 이해가 됩니다. ㅋㅋ 생각보다 미국시장이 강한 것이 AI는 거의 미국과 중국이 주도하는 시장이 되고 있습...