Let this is content of .ini file with more similar dictionaries
[section]
cmd_list = {'gamess': "416.gamess/exe/gamess",
'sjeng': '458.sjeng/exe/sjeng',
'soplex': '450.soplex/exe/soplex',
'astar': '473.astar/exe/astar',
}
...
now in my main file and want to access the dictionary dynamically:
for r in 'string'
cmd_list[r][1] #from .ini
cmd_list[r][0] #from .ini
....
how to do that?