Mark Dickinson wrote:
Well, random numbers is one thing. But how about the following:n = 12345**13 n154662214940914131102165197707101295849230845947265625Lint(n ** (1./13)) # should be 12345; okay12345int((n-1) ** (1./13)) # should be 12344; oops!12345
Good point! Oops indeed. :-) Dan -- http://mail.python.org/mailman/listinfo/python-list