Dictionary
Key : value๋ก ์ด๋ฃจ์ด์ ธ ์์ผ๋ก ๋ฐ์ดํฐ ๊ฐ์ ์ ์ฅํ๋๋ฐ ์ฌ์ฉ
1. dictionary ์ ์ธ
thisdict = {
"brand":"๋์ดํค",
"model":"max",
"year":1990
}
print(thisdict)
'''
ํค ์ด๋ฆ์ ์ฌ์ฉํ์ฌ ์ฐธ์กฐํ ์ ์๋ค.
'''
2. ๊ฐ ๊ฐ์ ธ์ค๊ธฐ
thisdict = {
"brand":"๋์ดํค",
"model":"max",
"year":1990
}
print(thisdict["brand"]) #ํค ๊ฐ ์ฌ์ฉํด์ value ๊ฐ์ ธ์ค๊ธฐ
print(thisdict.get("model")) #get๋ฉ์๋ ์ฌ์ฉํด์ value ๊ฐ์ ธ์ค๊ธฐ
3. ํค ๋ชฉ๋ก ๊ฐ์ ธ์ค๊ธฐ
print(thisdict.keys())
4. ์ถ๊ฐํ๊ธฐ1
thisdict = {
"brand":"Ford",
"model":"Mustang",
"year":1964
}
thisdict["color"] = "red"
print(thisdict)
์ถ๊ฐํ๊ธฐ2
thisdict.update({"bgColor":"black"})
print(thisdict)
5. ๋ณ๊ฒฝํ๊ธฐ
thisdict["color"] = "yellow"
thisdict.update({"bgColor":"blue"})
print(thisdict)
6. ์ ๊ฑฐํ๊ธฐ
thisdict.pop("model")
print(thisdict)
7. ๋ง์ง๋ง ์ฝ์ ๋ ํญ๋ชฉ ์ ๊ฑฐํ๊ธฐ
thisdict.popitem()
print(thisdict)
'๐์น ๊ฐ๋ฐ(Web) > ๐ํ์ด์ฌ(Python)' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
escape ์ด์ค์ผ์ดํ ๋ฌธ์ (0) | 2023.01.25 |
---|---|
ํ์ด์ฌ mutable vs. immutable ๋ฎคํฐ๋ธ ๋ ์ด๋ฎคํฐ๋ธ ๊ฐ๋จํ ์ฐจ์ด (0) | 2023.01.25 |
Python Set ์ด์ ๋ฆฌ (0) | 2023.01.17 |
๋ณ์(variable) (0) | 2023.01.17 |
๋ฌธ์์ด(String) (0) | 2023.01.17 |