Dear all, I see that "max" in Sage is not the "max" of Python:
============================= Python 2.5.2 (r252:60911, Jan 4 2009, 21:59:32) [GCC 4.3.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> v=[10,2,3,1,45] >>> max(v) 45 ============================= ============================= ---------------------------------------------------------------------- | Sage Version 4.1.2, Release Date: 2009-10-13 | | Type notebook() for the GUI, and license() for information. | ---------------------------------------------------------------------- sage: v=[10,2,3,1,45] sage: max(v) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) /home/dept/finotti/.sage/temp/boole.math.utk.edu/11162/ _home_dept_finotti_comp_sage_pol_power_sage_2.py in <module>() TypeError: 'sage.rings.integer.Integer' object is not callable ============================= ("max?" shows me that it is not the same and what Sage's max does.) Is there a function similar to Pythons. (Of course, it is easy to write, but the built in should be much faster.) Thanks, Luis --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---