brad <[EMAIL PROTECTED]> writes: > Ah yes, that works too... thanks. I've settled on doing it this way: > print int(math.pow(2,64)) > I like the added parenthesis :)
I was surprised to find that gives an exact (integer, not floating-point) answer. Still, I think it's better to say 2**64 which also works for (e.g.) 2**10000 where math.pow(2,10000) raises an exception. -- http://mail.python.org/mailman/listinfo/python-list