Re: [Tutor] Declaring a compound dictionary structure.

2010-03-13 Thread Steven D'Aprano
On Sun, 14 Mar 2010 10:06:49 am Ray Parrish wrote: > Hello, > > I am stuck on the following - > > # Define the Dates{} > dictionary structure as a dictionary > # containing two dictionaries, > each of which contains a list. > Dates = > {To

[Tutor] Declaring a compound dictionary structure.

2010-03-13 Thread Ray Parrish
Hello, I am stuck on the following - # Define the Dates{} dictionary structure as a dictionary # containing two dictionaries, each of which contains a list. Dates = {Today:{ThisIPAddress:[]}, Tomorrow:{ThisIPAddress:[]}} How do I pas