Files
freeCodeCamp/curriculum/challenges/japanese/23-python-for-everybody/python-for-everybody/python-dictionaries.md
freeCodeCamp's Camper Bot 9c20069eb2 chore(i18n,learn): processed translations (#53819)
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2024-03-12 22:29:52 +05:30

733 B

id, title, challengeType, videoId, bilibiliIds, dashedName
id title challengeType videoId bilibiliIds dashedName
5e7b9f090b6c005b0e76f067 Python の辞書 11 dnzvfimrRMg
aid bvid cid
631893305 BV19b4y167kj 376386176
python-dictionaries

--question--

--text--

このコードを実行した後、dict はどれに等しくなりますか?

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