파이썬 자료형인 딕셔너리(dict)에 대해 살펴보도록 하자
print("# dictionary 생성")
a = {1: "one", 2: "two", 3: "three"}
print(a)
print(a[1])
print("# len")
b = {1: "one", 2: "two", 3: "three"}
print(len(b))
print("# key 존재 유무")
c = {1: "one", 2: "two", 3: "three"}
print( 1 in c )
print( 4 not in c )
print("# add")
d = {1: "one", 2: "two", 3: "three"}
d[4] = "four"
print(d)
print("# modify")
e = {1: "one", 2: "two", 3: "three"}
e[1] = "hi"
print(e)
print("# del")
f = {1: "one", 2: "two", 3: "three"}
del f[1]
print(f)
print("# clear")
g = {1: "one", 2: "two", 3: "three"}
g.clear()
print(g)
print("# item, key, value 출력")
h = {1: "one", 2: "two", 3: "three"}
print(h.items())
for k in h.keys():
print(k)
for v in h.values():
print(v)
print("# update")
i = {1: "one", 2: "two", 3: "three"}
j = {4: "four", 5: "five", 6: "six"}
i.update(j)
print(i)
[파이썬(Python)] #25 상속 (0) | 2021.09.17 |
---|---|
[파이썬(Python] #24 클래스(class) / 객체(instance) / __new__ / __init__ (0) | 2021.09.17 |
[파이썬(Python)] #10 모듈 생성 및 시작 (0) | 2021.08.22 |
[파이썬(Python)] #9. re 모듈, 정규식 표현 (0) | 2021.08.22 |
[파이썬(Python)] #24. with 구문 (0) | 2021.08.22 |