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

Wednesday, November 28, 2012

Codecademy: Something of Value


#sample solution


prices = {
    "banana": 4,
    "apple": 2,
    "orange": 1.5,
    "pear": 3
    }
   
stock = {
    "banana": 6,
     "apple": 0,
     "orange": 32,
     "pear": 15
    }

totalValue = 0
for key in prices:
    addedValue = prices[key] * stock[key]
    totalValue = totalValue + addedValue

print totalValue

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts