Files
freeCodeCamp/curriculum/challenges/korean/23-python-for-everybody/python-for-everybody/python-dictionaries.md
camperbot 7a0d396180 chore(i18n,learn): processed translations (#53415)
Co-authored-by: Naomi Carrigan <nhcarrigan@gmail.com>
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2024-02-13 18:31:01 +01:00

699 B

id, title, challengeType, videoId, bilibiliIds, dashedName
id title challengeType videoId bilibiliIds dashedName
5e7b9f090b6c005b0e76f067 파이썬 사전 11 dnzvfimrRMg
aid bvid cid
631893305 BV19b4y167kj 376386176
python-dictionaries

--question--

--text--

What does dict equal after running this code?:

dict = {"Fri": 20, "Thu": 6, "Sat": 1}
dict["Thu"] = 13
dict["Sat"] = 2
dict["Sun"] = 9

--answers--

{'Fri': 20, 'Thu': 6, 'Sat': 1}

{'Fri': 20, 'Thu': 6, 'Sat': 1, 'Thu': 13, 'Sat': 2, 'Sun': 9}

{'Sun': 9}

{'Thu': 13, 'Sat': 2, 'Sun': 9}

{'Fri': 20, 'Thu': 13, 'Sat': 2, 'Sun': 9}

--video-solution--

5