Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a directories with filenames. I want for each of the files to create a dictionary.I do this:

files=glob.glob(*)
for f in files:
    f={}

but i don't get the result that i want. I.e: in my directory i have aaa bbb ccc. After the execution of my program i want to have 3 dictionaries. The first aaa={} t second one bbb={} and the 3rd one ccc={}.

share|improve this question
You really need to include an example of what result you're looking for. Right now you're just resetting the variable "f" in your loop to an empty dictionary for each iteration. – fiskfisk Oct 17 '12 at 14:15
i edited my question – curious Oct 17 '12 at 14:18

1 Answer

up vote 2 down vote accepted

you probably want to create a dict to hold all of your other dicts:

files = glob.glob('*')
d = {}
for f in files:
    d[f] = {}

Now to get access to the dictionary associated with file1, you'd just do file1_dict = d['file1'], or you could reference the items inside the that dict directly: d['file1']['data1']

share|improve this answer
but i want each dictionary to have the name of the file – curious Oct 17 '12 at 14:19
ok you are right. I have what i want with an extra layer of dictionaries – curious Oct 17 '12 at 14:21
2  
@curious -- Anytime you want to dynamically set the name of a variable, you should use a dict instead. You can do it by modifying the dictionary returned by globals, but you really (really) shouldn't. – mgilson Oct 17 '12 at 14:25
1  
@curious, you can think of d as a separate namespace. Otherwise what should happen if you have files named "for", "in", "f", etc. – gnibbler Oct 17 '12 at 14:55
@gnibbler -- That's a good point. Another reason that I would avoid it is because getting a handle on a variable you don't know the name of can be a little tricky as well. As I see it, you ultimately need to resort to using a dictionary (globals()) to get the variables names/data anyway -- might as well save yourself the extra step. – mgilson Oct 17 '12 at 14:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.