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 | 31 |
Tags
- 웹크롤링
- #크롤링 #웹문서
- 코딩
- #비정형#카카오api#api#크롤링
- #비정형 데이터 #네이버 #지도 #크롤링
- #위도#경도#비정형데이터#크롤링
- 셀레니움
- 위도경도
- 구글 지오코드
- 카카오APi
- #K-means #Clustering
- 웹매크로 #세잔느
- 숫자빼고 중복되는 코드동작법
- 파이썬 셀레니움
- 파이썬
Archives
- Today
- Total
지방이의 Data Science Lab
[python] 집합 자료형(2): 삽입 .add(a), .update([a,b])/삭제 .remove(a) 본문
Data Analysis/Codility
[python] 집합 자료형(2): 삽입 .add(a), .update([a,b])/삭제 .remove(a)
[지현] 2021. 1. 18. 18:251. 삽입
하나만 추가하는 경우 .add를 여러개인 경우 .update([a,b])
1
2
3
4
5
6
7
8
9
|
s1 = set([1,2,3,4,5,7,8])
s1.add(6)
print(s1)
# {1, 2, 3, 4, 5, 6, 7, 8}
s1.update([9,10])
print(s1)
# {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
|
일단 .update([a, b])하나만 외울 것.
2. 삭제
집합에서는 del이 없다.
1
2
3
4
|
s1 = set([1,2,3,4,5,7,8])
s1.remove(8)
# {1, 2, 3, 4, 5, 6, 7}
|
'Data Analysis > Codility' 카테고리의 다른 글
[Python] Boolean 자료형 (0) | 2021.01.18 |
---|---|
[python] 집합 자료형(1) : 교집합 & .intersection(x)/합집합 | .union(x)/ 차집합 - .difference(x) (0) | 2021.01.18 |
[Python] 딕셔너리자료형(2): .keys(), .values(), .items() (0) | 2021.01.18 |
[Python] 딕셔너리 자료형(1): a['key'], .get('key'), del a['key'], a.clear() (0) | 2021.01.18 |
[python] and/or (0) | 2021.01.18 |
Comments