On Wed, Jun 12, 2013 at 9:54 AM, Νικόλαος Κούρας <supp...@superhost.gr> wrote:
> but if enumerate yields 0 instead of '==========' then elif '=' not in
> year of course fails.
>
> So, i must tell:
>
> for i, month in enumerate(months):
>     print('<option value="%s"> %s </option>' % (i, month) )
>
> to somehow return '==========' instead of 0 but don't know how.
> --
> http://mail.python.org/mailman/listinfo/python-list

Well, you could try this:

> for i, month in enumerate(months):
>     if i == 0:
>         month = ('=' * 10)
>     print('<option value="%s"> %s </option>' % (i, month) )

No?

--
Fábio Santos
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to