-
리스트
[list delete]
list1 = [1,2,3]
del list1[2]
del list1
[list method]
메소드
설명
ex
append
자료를 리스트 끝에 추가
s.append(5)
insert
자료를 지정된 위치에 삽입 insert('index', 'value')
s.insert(3,4)
index
요소 검색(Search) index('value')
s.index(3)
count
요소 개수 알아내기count('value')
s.count(2)
sort
리스트 정렬
s.sort()
reverse
자료순서 바꾸기
s.reverse()
remove
지정 자료 값 한 개 삭제remove('value')
s.remove(2)
pop
리스트의 지정된 값 하나를 리턴하고 삭제
s.pop()
extend
리스트를 추가
s.extend([11,22])
[역순정렬]
list1.sort(reverse=True)
list1.sort() #리턴되는 값 없이 list1자체 변경
list2 = sorted(list1) #list1변경없이 새로운 list2생성
list1.reverse() #순서 뒤집기
'Python' 카테고리의 다른 글
Python예제 - string.digits string.ascii_letters (0) 2018.01.31 Python예제 - 문자열 속 특수문자 변환 (0) 2018.01.31 Python예제 - ord, hex, chr, unichr (0) 2018.01.31 Python함수 - Cmp 비교 (0) 2018.01.30 Python Re - 정규식, RegularExpression (0) 2018.01.30 Python예제 - 문자와 아스키코드 변환 (0) 2018.01.30 Python예제 - chardet.detect 캐릭터셋 인코딩 확인 (0) 2018.01.30 Python문법 - if (0) 2018.01.29