티스토리 뷰
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
집합과 동일,
값들의 모임
순서는 없음
{} 로 묶어서 정의
>>> a = {1,2,3}
>>> b = {3,4,5}
>>> a
{1, 2, 3}
>>> b
{3, 4, 5}
>>> a,b
({1, 2, 3}, {3, 4, 5})
>>> type(a)
<class 'set'>
-. union(합집합)
>>> a.union(b)
{1, 2, 3, 4, 5}
-. intersection(교집합)
>>> a.intersection(b)
{3}
-. 연산자사용
>>> a - b #차집합
{1, 2}
>>> a | b #합집합
{1, 2, 3, 4, 5}
>>> a & b #교집합
{3}
'Python' 카테고리의 다른 글
Python, list(), set(), tuple()의 형변환, in (0) | 2016.04.19 |
---|---|
Python, 튜플 (0) | 2016.04.19 |
Python, 리스트 (0) | 2016.04.19 |
Python, Indexing (0) | 2016.04.19 |
Python, 자료형 (0) | 2016.04.19 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- highlightthickness
- tkinter
- Linux
- Java
- vba
- Private
- borderwidth
- tkinter command & bind [명령어묶기와 사건묶기] Python
- 리눅스
- activeforeground
- Python
- 폼
- command
- activebackground
- Composite Key
- checkbutton
- ManyToOne
- FetchType
- JPA
- fetch join
- Excel
- Module
- indicatoron
- disabledforeground
- 상수
- onetomany
- IdClass
- highlightbackground
- 파이썬
- apache
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함