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

Wednesday, November 28, 2012

Codecademy: Making a Purchase


#sample solution


groceries = ["banana", "orange","apple"]

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

def computeBill(groceries):
bill = 0
for fruit in groceries:
bill = bill + prices[fruit]
    return bill
print computeBill(groceries)

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts