1.0 KiB
1.0 KiB
id, title, challengeType, videoId, dashedName
id | title | challengeType | videoId | dashedName |
---|---|---|---|---|
5e9a093a74c4063ca6f7c167 | Python 迭代和模塊 | 11 | XzosGWLafrY | python-iteration-and-modules |
--description--
在視頻中我們使用的編輯器工具是在 notebook.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