freeCodeCamp/curriculum/challenges/chinese-traditional/07-scientific-computing-wit.../python-for-everybody/dictionaries-and-loops.md

50 lines
604 B
Markdown
Raw Normal View History

---
id: 5e7b9f0a0b6c005b0e76f069
title: 字典和循環
challengeType: 11
videoId: EEmekKiKG70
dashedName: dictionaries-and-loops
---
# --description--
更多資源:
\- [練習](https://www.youtube.com/watch?v=PrhZ9qwBDD8)
# --question--
## --text--
以下代碼將打印什麼?
```python
counts = { 'chuck' : 1 , 'annie' : 42, 'jan': 100}
for key in counts:
if counts[key] > 10:
print(key, counts[key])
```
## --answers--
<pre>annie 42
jan 100</pre>
---
<pre>chuck 1
annie 42
jan 100</pre>
---
<pre>chuck 1</pre>
---
<pre>[Error](錯誤)</pre>
## --video-solution--
1