Paul Rubin wrote: > print 2**64 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 :) -- http://mail.python.org/mailman/listinfo/python-list
Paul Rubin wrote: > print 2**64 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 :) -- http://mail.python.org/mailman/listinfo/python-list