[Python-Dev] request for minor enhancement / linear algebra

Fredrik Lundh Fredrik Lundh" <effbot@telia.com
Fri, 14 Jul 2000 17:33:19 +0200


greg wrote:

> p.s. if min(a,b,c,d,e) is the same as min([a,b,c,d,e]), then what is =
the
> meaning of min([a,b,c,d,e], [g,h,i,j,k])?

same as min([[a,b,c,d,e], [g,h,i,j,k]]), of course.

</F>