On Mon, Jan 4, 2010 at 1:32 PM, Shawn Milochik <sh...@milochik.com> wrote:
> You could put them in a dictionary with the key being the name, instead of a 
> list.

To illustrate that for the OP:

name2drink = {}
for booze in liquors:
    for juice in juices:
        name = juice +" "+booze # or however you're naming them
        drink = Bottle(booze, juice)
        name2drink[name] = drink

#example use
favorite = name2drink["apple wine"]
favorite.rating = 9/10

Cheers,
Chris
--
http://blog.rebertia.com
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to