Skip to content

Instantly share code, notes, and snippets.

@nelix
Created July 5, 2009 12:21
Show Gist options
  • Save nelix/140959 to your computer and use it in GitHub Desktop.
Save nelix/140959 to your computer and use it in GitHub Desktop.
prices = {'apple': 0.40, 'banana': 0.50}
my_purchase = {
'apple': 1,
'banana': 6}
grocery_bill = sum(prices[fruit] * my_purchase[fruit]
for fruit in my_purchase)
print 'I owe the grocer $%.2f' % grocery_bill
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment