250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ScrollView
- 안드로이드
- Kotlin
- Button
- Flutter
- drift
- 앱바
- CustomScrollView
- viewmodel
- DART
- LifeCycle
- tabbar
- livedata
- data
- Navigation
- binding
- textfield
- scroll
- textview
- appbar
- Compose
- 앱
- Dialog
- activity
- 테스트
- intent
- TEST
- Coroutines
- android
- 계측
Archives
- Today
- Total
Study Record
[파이썬] 집합(Set) 본문
728x90
집합 특징
- 집합(set)은 파이썬 2.3부터 지원되기 시작한 자료형이다.
- 집합에 관련된 것들을 쉽게 처리하기 위해 만들어진 자료형이다.
- 중복을 허용하지 않는다.
- 순서가 없다.(unordered)
- 인덱스(index)를 지원하지 않는다.
- 만약 집합(set) 자료형에 저장된 값을 인덱싱으로 접근하기 위해서는 리스트나 튜플로 변환한 후 사용해야 한다.
☞ 사용 방식
myset = {}
myset = {"apple", "banana", "cherry"}
☞ 집합 연산
s1 = {1, 2, 3, 4, 5, 6} # s1 = set([1, 2, 3, 4, 5, 6])
s2 = {4, 5, 6, 7, 8, 9}
# 교집합
u = s1 & s2
u = s1.intersection(s2)
print(u) # {4, 5, 6}
# 차집합
u = s1 - s2
u = s1.difference(s2)
print(u) # {1, 2, 3}
# 합집합
u = s1 | s2
u = s1.union(s2)
print(u) # {1, 2, 3, 4, 5, 6, 7, 8, 9}
☞ 집합 요소 추가하기 - add(), update()
# add() 한개 추가
s1 = {"apple", "banana", "cherry"}
s1.add("apple") # {'banana', 'cherry', 'apple'}
# add() 업데이트
x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
x.update(y) # {'cherry', 'google', 'banana', 'microsoft', 'apple'}
☞ 집합 요소 제거하기 - remove()
fruits = {"apple", "banana", "cherry"}
fruits.remove("banana") # {'cherry', 'apple'}
※ 리스트 중복 요소 제거하기
items = [7, 6, 2, 3, 4, 4, 6, 6, 7, 2, 1]
list(set(items)) # [1, 2, 3, 4, 6, 7]
728x90
'서버보안 > 리눅스 서버보안' 카테고리의 다른 글
[파이썬] 연산자 (0) | 2021.11.24 |
---|---|
[파이썬] 기본 문법(조건문, 반복문, 함수) (0) | 2021.11.24 |
[파이썬] 딕셔너리(JSON) (0) | 2021.11.24 |
[파이썬] 튜플(tuple) (0) | 2021.11.24 |
[파이썬] 리스트 (0) | 2021.11.24 |