ECTED]> wrote:
> > norseman a écrit :
> >> Terry Reedy wrote:
> >>> Ron Brennan wrote:
> >>>> Hello,
> >>>> How would I create a dictionary that contains multiple values for
> >>>> one key.
> >>>
> >>
1:56 AM, Bruno Desthuilliers
> <[EMAIL PROTECTED]> wrote:
>>
>> norseman a écrit :
>>>
>>> Terry Reedy wrote:
>>>>
>>>>
>>>> Ron Brennan wrote:
>>>>>
>>>>> Hello,
>>>>> How would I create a
>> Terry Reedy wrote:
>>
>>>
>>>
>>> Ron Brennan wrote:
>>>
>>>> Hello,
>>>> How would I create a dictionary that contains multiple values for one
>>>> key.
>>>>
>>>
>>> Make the value
2008/8/28 Bruno Desthuilliers <[EMAIL PROTECTED]>:
> You can either use 1/ a list of dicts, or 2/ a dict mapping keys to lists.
>
> 1/
> records = [
> {"name":"guy", "address":"unknown","zip":"0"},
> {"name":"girl", "address":"123 tiny street","zip":"12345"},
> {"name":"boy", "address":"
norseman a écrit :
Terry Reedy wrote:
Ron Brennan wrote:
Hello,
How would I create a dictionary that contains multiple values for one
key.
Make the value a collection object (set or list if you plan to add and
delete).
I'd also like the key to be able to have duplicate en
Le Thursday 28 August 2008 03:43:16 norseman, vous avez écrit :
> Terry Reedy wrote:
> > Ron Brennan wrote:
> >> Hello,
> >>
> >>
> >> How would I create a dictionary that contains multiple values for one
> >> key.
> >
> > Make
Terry Reedy wrote:
Ron Brennan wrote:
Hello,
How would I create a dictionary that contains multiple values for one
key.
Make the value a collection object (set or list if you plan to add and
delete).
I'd also like the key to be able to have duplicate entries.
Dict keys mu
Le Thursday 28 August 2008 01:56:54 Terry Reedy, vous avez écrit :
> > I'd also like the key to be able to have duplicate entries.
>
> Dict keys must be hashable and unique.
Let's admit they don't have to be unique (it's easy to implement all sort of
data structures in pure python), but what wou
Ron Brennan wrote:
Hello,
How would I create a dictionary that contains multiple values for one
key.
Make the value a collection object (set or list if you plan to add and
delete).
I'd also like the key to be able to have duplicate entries.
Dict keys must be hashable and u
Ron Brennan wrote:
How would I create a dictionary that contains multiple values for one
key. I'd also like the key to be able to have duplicate entries.
look for the thread titled "python multimap".
--
http://mail.python.org/mailman/listinfo/python-list
Hello,
How would I create a dictionary that contains multiple values for one key.
I'd also like the key to be able to have duplicate entries.
Thanks,
Ron
--
FYI, my email address is changing. My rogers account will be deactivated
shortly. From now on please use:
[EMAIL PROTECTED]
--
11 matches
Mail list logo