On Mon, 05 Jan 2009 17:54:19 -0500, Terry Reedy <[email protected]> wrote: >> for email in rows: >> To = email
Thanks guys. Turns out email is a tuple, so here's how to extract the
columns:
for email in rows:
email=email[0]
--
http://mail.python.org/mailman/listinfo/python-list
