[EMAIL PROTECTED] wrote:
> It's just sequence unpacking. Did you know that this works?:
>
> pair = ("California","San Francisco")
> state, city = pair
> print city
> # 'San Francisco'
> print state
> # 'California'
Yes, I understand that. What confused me was if it had been written like
this:
pair = (("California","San Francisco"))
--
http://mail.python.org/mailman/listinfo/python-list
