.add()
my_set = {1, 2, 3}
my_set.add(4)
print(my_set)
> {1, 2, 3, 4}
.remove()
my_set = {1, 2, 3}
my_set.remove(3)
print(my_set)
> {1, 2}
값의 포함 여부를 알아보는 것
in 사용
my_set = {1, 2, 3}
if 1 in my_set:
print("1 is in the set")
> 1 is in the set
if 4 not in my_set:
print("4 is not in the set")
> 4 is not in the set
& 키워드 혹은 intersection() 함수를 사용
set1 = {1, 2, 3, 4, 5, 6}
set2 = {4, 5, 6, 7, 8, 9}
print(set1 & set2)
> {4, 5, 6}
print(set1.intersection(set2))
> {4, 5, 6}
| 키워드 혹은 union 함수를 사용
print(set1 | set2)
> {1, 2, 3, 4, 5, 6, 7, 8, 9}
print(set1.union(set2))
> {1, 2, 3, 4, 5, 6, 7, 8, 9}
my_dic = { "key1" : "value1", "key2" : "value2"}
bts_rm = { "실명" : "김남준", "가명" : "RM", "태어난 년도": 1991
dict1 = { 1 : "one", 1 : "two" }
print(dict1)
> { 1: "two" }
dictionary_name[new_key] = new_value
my_dict = { "one": 1, 2: "two", 3 : "three" }
my_dict["four"] = 4
print(my_dict)
> {'one': 1, 2: 'two', 3: 'three', 'four': 4
my_dict = { }
my_dict[1] = "one"
my_dict[2] = "two"
> {1: 'one', 2: 'two'}
my_dict = { "one": 1, 2: "two", 3 : "three" }
del my_dict["one"]
print(my_dict)
> {2: 'two', 3: 'three'}