목차
set .intersection_update() 예제 - 2개 Set 경우
set .intersection_update() 정의
set .intersection_update() 구문
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)
결과값: {'홈짱닷컴'}
주소 복사
랜덤 이동
최신댓글