[Python] 파이썬 집합 (set /intersection/remove/difference/union)


[Python] 파이썬 집합 (set /intersection/remove/difference/union)

# 집합 (set) # 중복이 안되고, 순서가 없음 my_set = {1,2,3,3,3} print(my_set) java = {"유재석", "김태호", "양세형"} python = set(["유재석", "박명수"]) #교집합 (java 와 python 을 모두 할 수 있는 개발..

[Python] 파이썬 집합 (set /intersection/remove/difference/union)에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.


원문링크 : [Python] 파이썬 집합 (set /intersection/remove/difference/union)