Liam Clarke wrote:
oh? Is is the negative?

No, the decimal fraction. It's easy enough to try it: >>> int('950') 950 >>> int('-950') -950 >>> int('950.00') Traceback (most recent call last): File "<stdin>", line 1, in ? ValueError: invalid literal for int(): 950.00 >>> int('-950.00') Traceback (most recent call last): File "<stdin>", line 1, in ? ValueError: invalid literal for int(): -950.00

Kent



On Mon, 07 Feb 2005 09:36:02 -0500, Kent Johnson <[EMAIL PROTECTED]> wrote:
No, because list[1]  is '-950.00' which will not parse as an int.

Kent

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor





_______________________________________________ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Reply via email to