Paul Rubin <http://[EMAIL PROTECTED]> writes:
> notations for lists and dicts, using list((1,2,3)) and dict((1,2),(3,4))
> for [1,2,3] and {1:2, 3:4} respectively.

Actually that would be dict(((1,2), (3,4))), of course.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to