8. Keeping Track of the Produce

[code]
prices = {
“banana”: 4,
“apple”: 2,
“orange”:1.5,
“pear”: 3
}

stock = {
“banana”: 6,
“apple”: 0,
“orange”: 32,
“pear”: 15
}

for key in prices:
print(key)
print(“price: %s” % prices[key])
print(“stock: %s” % stock[key])

[/code]

I get the following code: “You should have exactly three print statements! (Make sure there are no occurrences of ‘print’ in any comment or string!)”

and by the way the output is totally correct.

1 Like

You’re using python3 syntax.

2 Likes

Do you mean the brackets? EDIT: Thank you it worked without the brackets.

2 posts were split to a new topic: 8. keeping trace of product