Python

[set] Python - set.intersection_update() 메서드 - Set 공통요소 아닌 요소 제거. (= intersection_update메서드 = 셋인터섹션업데이트메서드)

1470

목차

  1. set.intersection_update() 예제 - 2개 Set 경우
  2. set.intersection_update() 정의
  3. set.intersection_update() 구문
  4. set.intersection_update() 예제 - 3개 Set 경우

 

set.intersection_update() 예제 - 2개 Set 경우

 

x = {"홈짱닷컴", "Homzzang.com", "코딩강의"}

y = {"홈짱닷컴", "HTML", "CSS"}

x.intersection_update(y) 

print(x)

 

결과값: {'홈짱닷컴'}

 

set.intersection_update() 정의

 

둘 이상 set에서 공통요소 아닌 요소를 제거.

 


cf.

intersection() 메서드 : 둘 이상 set의 공통 요소 갖는 set 반환.

 

 

set.intersection_update() 구문

 

set.intersection_update(set1, set2 ... etc)

 


[매개변수]

 

set1

필수. 동일 요소를 갖는지 체크할 set

 

set2 ... etc

선택. 동일 요소를 갖는지 체크할 set들

※ 콤마( , ) 이용해 원하는 만큼 연결 가능.

 

 

set.intersection_update() 예제 - 3개 Set 경우

 

x = {"홈짱닷컴", "Homzzang.com", "코딩강의"}

y = {"홈짱닷컴", "HTML", "CSS"}

z = {"홈짱닷컴", "그누보드5", "영카트5"}

x.intersection_update(y,z) 

print(x)

 

결과값: {'홈짱닷컴'} 



분류 제목
string Python - endswith() 메서드 - 문자열이 지정 문자열로 끝나는지 체크. (= endswith메…
string Python - expandtabs() 메서드 - 문자열 내 Tab 간격 지정. (= 익스팬드탭스)
string Python - find() 메서드 ★ - 문자열 처음 발견 위치 찾기/검색 (= find메서드 = 파인드 …
string Python - format() 메서드 ★★ - 포맷된 문자열 삽입. (= format메서드 = 포맷) ※ …
string Python - format_map() 메서드 ★ - 문자열 안 지정 값의 형식 지정. (= 포맷맵)
string Python - index() 메서드 ★ - 지정 문자열 처음 위치 찾기/검색. (= 인덱스)
string Python - isalnum() 메서드 - 문자열이 알파벳과 숫자인지 체크. (= isalnum메서드 = …
string Python - isalpha() 메서드 - 문자열이 알파벳뿐인지 체크. (= 이즈알파)
string Python - isdecimal() 메서드 - 문자열이 decimal 숫자뿐인지 체크 (= isdecima…
string Python - isdigit() 메서드 - 문자열이 digit 숫자뿐인지 체크. (= 이즈디지트)
string Python - isidentifier() 메서드 - 문자열이 유효한 식별자인지 체크 (= isidentif…
string Python - islower() 메서드 - 영문 문자열이 소문자뿐인지 체크. (= 이즈로우어)
string Python - isnumeric() 메서드 - 문자열이 numeric 숫자뿐인지 체크. (= 이즈뉴메릭)
string Python - isprintable() 메서드 - 문자열이 모두 인쇄 가능한지 체크. (= isprinta…
string Python - isspace() 메서드 - 문자열이 모두 공백인지 체크 (= isspace메서드 = 이즈스…
12/32
목록
 홈  PC버전 로그인 일본어
그누앞단언어
그누뒷단언어
그외코딩언어
그누보드
제작의뢰
Q&A
커뮤니티 3
웹유틸
회원센터
홈짱닷컴 PC버전 로그인