BIG
* union() 메소드는 두 집합의 합집합을 구하는 메소드
- 중복된 원소는 한번만 표기됨.
* 코드샘플
x = {1, 2, 3}
y = {2, 4, 5}
z = {3, 6, 7}
print(x.union(y).union(z))
* 실행결과
LIST
'!!...Python > !!...PythonStudy' 카테고리의 다른 글
[python]Sample Code: Count() - SampleCode-2023.08.08 (0) | 2023.08.08 |
---|---|
[python]Sample Code: Find Password Study Code_ver20220929 (0) | 2022.09.29 |
[python]Sample Code: Get Directory Path Using Select File Dialog (0) | 2022.09.29 |
[python]SampleCode: read text file line by line use while (0) | 2022.09.28 |
[python]SampleCode: text file read (0) | 2022.09.24 |