On May 14, 9:22 am, HMS Surprise <[EMAIL PROTECTED]> wrote: > > if t[2] == 'PM': > > hrMn[0] = int(hrMn[0]) + 12 > > Oops, should be: > hrMn[0] = int(hrMn[0] > if t[2] == 'PM': > hrMn[0] += 12
Oops +=1, should be:
hrMn[0] = int(hrMn[0]
if t[2] == 'PM':
hrMn[0] += 12
Need more starter fluid, coffee please!!!
--
http://mail.python.org/mailman/listinfo/python-list
