Re: [Tutor] List within Dictionary

2007-06-20 Thread Kent Johnson
pearl jb wrote: > I wanted to know "How to access the list elements which is in Dictionary" > > dict = {'John':['ph=919873673','res=91928827737'] , 'William' : > ['ph=91983763','res=91837474848'] } > > > I want the output to be > > 1. John res=91928827737 > 2. William ph=91983763 You can use

[Tutor] List within Dictionary

2007-06-20 Thread pearl jb
I wanted to know "How to access the list elements which is in Dictionary" dict = {'John':['ph=919873673','res=91928827737'] , 'William' : ['ph=91983763','res=91837474848'] } I want the output to be 1. John res=91928827737 2. William ph=91983763 - On