Back to Freecodecamp

Dictionaries and Loops

curriculum/challenges/english/blocks/python-for-everybody/5e7b9f0a0b6c005b0e76f069.md

latest529 B
Original Source

--description--

More resources:

- <a href="https://www.youtube.com/watch?v=PrhZ9qwBDD8" target="_blank" rel="noopener noreferrer nofollow">Exercise</a>

--questions--

--text--

What will the following code print?:

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