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={}.