TkNeo wrote:
WHAT ?This is crazy
Crazy like a fox?
a = [1, 2, 3]
try:
a.index(99)
except:
a.append(99)
finally:
print a.index(99)
MY question: which exception should I actually be catching there?
** Posted from http://www.teranews.com **
--
http://mail.python.org/mailman/listinfo/python-list
