mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-05 16:00:38 -04:00
1.3 KiB
1.3 KiB
id, title, challengeType, videoId, bilibiliIds, dashedName
| id | title | challengeType | videoId | bilibiliIds | dashedName | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| 5e9a093a74c4063ca6f7c167 | Python: ітерація та модулі | 11 | XzosGWLafrY |
|
python-iteration-and-modules |
--description--
Замість використаного у відеоматеріалі notebooks.ai можна користуватись блокнотом Google Colab.
Додаткові ресурси:
--question--
--text--
Як за допомогою ітерації надрукувати ключі та значення словника user?
--answers--
for key in user.items():
print(key)
for key, value in user.all():
print(key, value)
print(value)
for key, value in user.items():
print(key, value)
for key, value in user
print(key, value)
--video-solution--
3