지방이의 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:25

1. 삽입

하나만 추가하는 경우 .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}

 

 

Comments