• 회원가입
  • 로그인
  • 구글아이디로 로그인

[howto] Python - 리스트 중복요소 제거. ★ (Remove List Duplicate)

2163  

List 중복요소 제거

[방법1] 바로 적용

 

hzlist = ["HTML", "CSS", "HTML", "JS", "JS"]

hzlist = list(dict.fromkeys(hzlist))

print(hzlist)

 

결과값: ['HTML', 'CSS', 'JS'] 


[방법2] 함수 생성 

 

def hz_function(x):

  return list(dict.fromkeys(x))

hzlist = ["HTML", "CSS", "HTML", "JS", "JS"]

hzlist = hz_function(hzlist)

print(hzlist)

 

결과값: ['HTML', 'CSS', 'JS'] 


PS. 코드 설명

 

dict.fromkeys(hzlist)

hzlist 요소를 key로 사용해 dictionary 생성.

(dictionary는 중복 key 못 갖으므로, 자동으로 중복 요소 제거됨.)

 

list(dict.fromkeys(hzlist))

중복 key 제거된 dictionary를 다시 List로 변환.

 

※ 방법1과 방법2 둘 다 기본 원리는 동일.

 


분류 제목
numpy PY - NumPy ufuncs : Simple Arithmetic (간단 산수)
numpy PY - NumPy ufuncs : Rounding Decimals (반올림 소수점)
numpy PY - NumPy ufuncs : Logs (로그)
numpy PY - NumPy ufuncs : Summations (합계=합산)
numpy PY - NumPy ufuncs : Products (요소 곱셈)
numpy PY - NumPy ufuncs : Differences (요소의 차)
numpy PY - NumPy ufuncs : Finding LCM (최소공배수 찾기)
numpy PY - NumPy ufuncs : Finding GCD (최대공약수 찾기)
numpy PY - NumPy ufuncs : Trigonometric Functions (삼각함수)
numpy PY - NumPy ufuncs : Hyperbolic Functions (쌍곡선함수)
numpy PY - NumPy ufuncs : Set Operations (집합 연산)
howto Python - 3과 5의 배수의 합산(합계)
basic Python - Math (수학)
module Python - statistics 모듈 메서드 종류 (= 통계 모듈)
module Python - statistics.harmonic_mean() 메서드 - 조화 평균값 (= harmonic…
module Python - statistics.mean() 메서드 ★ - 평균값 (= mean메서드 = 민메서드)
module Python - statistics.median() 메서드 ★ - 중앙값 (= 중간값 = 가운데값 = med…
module Python - statistics.median_grouped() 메서드 -
module Python - statistics.median_high() 메서드 - 높은 중앙값 (= median_hig…
module Python - statistics.median_low() 메서드 - 낮은 중앙값 (= median_low메…
18/24
목록
찾아주셔서 감사합니다. Since 2012