On 24/02/2011 16:41, Verde Denim wrote:
hi, all i can't believe i don't see this, but python from the command line: >>> x = '0D' >>> y = '0x' + x >>> print "%d" % int(y,0) 13content of testme.py: x = '0D' y = '0x' + x print "%d" % int(y,0) TypeError: 'int' object is not callable what am i not seeing here??
I can only assume that at some point you assigned an int to 'int'. -- http://mail.python.org/mailman/listinfo/python-list