On May 5, 2005, at 16:37, Allen John Schmidt, Jr. wrote:

> Ok, I have had enough. I have looked all through the python docs and I
> cannot find it. How do you insert an entry into a dictionary?
>

     The way you think it's done:

 >>> a = {'foo': 1, 'bar': 2}
 >>> a
{'foo': 1, 'bar': 2}
 >>> a['baz'] = 'boo'
 >>> a
{'baz': 'boo', 'foo': 1, 'bar': 2}
 >>>

     Interactive Python is your friend ^^.

-- Max
maxnoel_fr at yahoo dot fr -- ICQ #85274019
"Look at you hacker... A pathetic creature of meat and bone, panting  
and sweating as you run through my corridors... How can you challenge  
a perfect, immortal machine?"

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to