[Tutor] Append sub-key to dictionary

M. Bashir Al-Noimi mbnoimi at gmx.com
Tue May 25 20:28:54 CEST 2010


Hi All,

I'm trying to append a new sub-key to specific dictionary but it 
replacing the content of parent key instead of add a sub-key!


How I can fix this issue?

--snippet--

addressbook = {
                'work': {
                          'Andre': {
                                   'phone': '22761654',
                                   'e-mail': '5456646',
                                   'address': 'Syria, Aleppo',
                                   'website': 'www.sdff.com'
                                   }
                         },
                 'Friends': {
                             'Ahmad': {
                                      'phone': '34646464',
                                      'picture': '/home/fiends/wael.png',
                                      'posts': {
                                                'blog': 'http://www.dsfd.com/',
                                                'newspaper': 'http://news.com/'
                                                }
                                      },
                             'Issa': {
                                      'e-mail': 'asd at dsfdsc.com'
                                      }
                             }
                }

addressbook['Friends'] = {
                            'kassem': {
                                        'address':'Aleppo Street',
                                        'Country':'Palestine',
                                        'articles':{
                                                    'blog':'http://blogger.com',
                                                    'news':'http://news.com/'
                                                    }
                                        }
                            }


-- 
Best Regards
Muhammad Bashir Al-Noimi
My Blog: http://mbnoimi.net

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/tutor/attachments/20100525/aa3aa5dd/attachment.html>


More information about the Tutor mailing list