상세 컨텐츠

본문 제목

[파이썬(Python)] #14. 자료형 (딕셔너리(dict))

python

by 빨간눈동자 2021. 8. 22. 23:22

본문

반응형

파이썬 자료형인 딕셔너리(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)

반응형

관련글 더보기