Quotes help make search much faster. Example: "Practice Makes Perfect"

Wednesday, November 28, 2012

Codecademy: Keeping Track of the Produce


#sample solution


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: " + str(prices[key])
print "stock: " + str(stock[key])

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts