[Tutor] Baffled: why doesn't range work?

Brett Shand brett@earthlight.co.nz
Fri, 27 Jul 2001 13:43:14 +1200


> 
> Now, something is very wrong. The matrix A should look like this:
> 
> 0.2 0.2 0.2 0.2 0.2
> 0.2 0.2 0.2 0.2 0.2

works fine for me too:

------------------------
>>> import matrix
>>> A = matrix.mtrx(2, 5, .2)
>>> A.Display()
0.2 0.2 0.2 0.2 0.2
0.2 0.2 0.2 0.2 0.2
>>> 
-------------------------

brett