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
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