-
[Python] Remove list duplicates using set data type. (파이썬 집합 자료형(set)을 이용한 리스트 중복값 제거)Python/Python Programming 2018. 5. 6. 00:17
집합(set) 자료형의 특징
- 중복 허용하지 않음
- 순서가 없음
집합 자료형(set)의 중복을 허용하지 않는 특징을 이용해 리스트나 튜플의 중복요소을 제거
beforeLst = ['a','b','c','c','d','d','e' ] s = set(beforeLst) # list → set print(s) afterList = list(s) # set → list print(sorted(afterList)) ------------------------------------------------ {'c', 'b', 'e', 'a', 'd'} ['a', 'b', 'c', 'd', 'e']
'Python > Python Programming' 카테고리의 다른 글
[Python] 포함(Containment) 연산자 in, not in (2) 2018.05.07 [Python] if 조건문에서 자료형의 참(True)과 거짓(False) (0) 2018.05.07 [Python] getpass 모듈을 이용하여 입력값 감추기 (0) 2018.05.06 [Python] set 자료형 - 교집합, 합집합, 차집합 (0) 2018.05.06 [Python] 파이썬 requests 모듈로 json 처리하기 (0) 2018.05.05 [Python] 한개의 요소만 갖는 튜플 데이터 타입 만들기 (0) 2018.05.05 [Python] 반복문(for, while)과 else (0) 2018.04.29 [Python] 람다 함수(Lambda) (0) 2018.04.29