<In what way does your code behave incorrectly? Include ALL error messages.>
After running the code it showed “b berry” in the result board, but under line appeared "Oops, try again. It looks like your code did not print “b berry”. What was wrong in my code, please help to debug it.
Thank you.
<What do you expect to happen instead?>
```python
d = {‘a’: ‘apple’, ‘b’: ‘berry’, ‘c’: ‘cherry’}
for key in d:
if d[key] == “berry”:
print key, d[key]# Your code here!
<do not remove the three backticks above>
In the result board:
b berry
None
Thanks. But it didn’t work.
It’s the same as before.
Oops, try again. It looks like your code did not print “b berry”.
Maybe there is something ignored.