nospam wrote:
How should I write a tree using diconary. I have used a dictonary to make a tree.

dictionary tree?

root = {
    'node_a': {
        'node_a_a': 'blah',
        'node_a_b': 'foo',
        'node_a_c': 'bar',
    },
    'node_b': {
        'node_b_a': 'soo',
        'node_b_b': 'flee',
        'node_b_c': {
            'node_b_c_a': 'bee',
            'node_b_c_b': 'fee',
            'node_b_c_c': 'dee',
        },
    },
}

you can throw in some default dicts as well as necessary...

Am I misunderstanding something?
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to