Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #72042 > unrolled thread
| Started by | Dave Angel <davea@davea.name> |
|---|---|
| First post | 2014-05-25 22:09 -0400 |
| Last post | 2014-05-25 22:09 -0400 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: Loop thru the dictionary with tuples Dave Angel <davea@davea.name> - 2014-05-25 22:09 -0400
| From | Dave Angel <davea@davea.name> |
|---|---|
| Date | 2014-05-25 22:09 -0400 |
| Subject | Re: Loop thru the dictionary with tuples |
| Message-ID | <mailman.10324.1401070147.18130.python-list@python.org> |
Ned Batchelder <ned@nedbatchelder.com> Wrote in message:
> On 5/25/14 8:55 AM, Igor Korot wrote:
>> Hi, ALL,
>> I have a following data structure:
>>
>> my_dict[(var1,var2,var3)] = None
>> my_dict[(var4,var5,var6)] = 'abc'
>>
>> What I'm trying to do is this:
>>
>> for (key,value) in my_dict:
>> #Do some stuff
>>
>> but I'm getting an error "Too many values to unpack".
>>
>> What am I doing wrong?
>>
>> Thank you.
>>
>
> You want:
>
> for key, value in my_dict.items(): # or .iteritems()
>
> Iterating over a dictionary gives you its keys. items() will give you
> key,value pairs.
Or, if the dict is large, you might want
for key in my_dict:
value = my_dict [key]
...
--
DaveA
Back to top | Article view | comp.lang.python
csiph-web