Re: [Tutor] User Made Dictionaries

2011-03-28 Thread Steven D'Aprano
michael scott wrote: I was thinking something like this for my general flow (this is all just fake code trying to represent my thought process) mold = { "name" : " ", "age": " ", "charm_point" : " ", "profile_pic"

[Tutor] User Made Dictionaries

2011-03-28 Thread michael scott
Hello, I'm trying to find out the best course of action for the next stage of my program. I want to hold information on various idols. I first thought to do this with classes, but realised that I could represent the data the same way with a dictionary. So I am now just concentrating on diction