On Thu, Mar 5, 2009 at 7:46 PM, Andre Engels <[email protected]> wrote:
> If the dict = {key1: val1, key2: val2, ...}, you can do:
>
> for key in dict:
> plot(key,dictionary[key])
Of course I meant:
for key in dict:
plot(key,dict[key])
--
André Engels, [email protected]
--
http://mail.python.org/mailman/listinfo/python-list
