Re: Multi-dimension list

2008-12-24 Thread Steve Holden
James Stroud wrote: > Steven Woody wrote: >> Hi, >> >> In the book Python Essential Reference, Chapter 3, when talking about >> extended slicing, it gives an example: a = m[0:10, 3:20]. But I >> don't understand how the 'm' was defined. What should it looks like? > > m could be an instance of t

Re: Multi-dimension list

2008-12-24 Thread James Stroud
Steven Woody wrote: Hi, In the book Python Essential Reference, Chapter 3, when talking about extended slicing, it gives an example: a = m[0:10, 3:20]. But I don't understand how the 'm' was defined. What should it looks like? m could be an instance of the Krayzee class. py> class Krayzee(

Re: Multi-dimension list

2008-12-23 Thread Carl Banks
On Dec 23, 10:29 pm, "Steven Woody" wrote: > Hi, > > In the book Python Essential Reference, Chapter 3, when talking about > extended slicing, it gives an example:  a = m[0:10, 3:20].  But I > don't understand how the 'm' was defined.  What should it looks like? I suspect what the book is saying

Re: Multi-dimension list

2008-12-23 Thread Steven Woody
Hi, In the book Python Essential Reference, Chapter 3, when talking about extended slicing, it gives an example: a = m[0:10, 3:20]. But I don't understand how the 'm' was defined. What should it looks like? Thanks. - narke -- http://mail.python.org/mailman/listinfo/python-list

Multi-dimension list

2008-12-23 Thread Steven Woody
Hi, In the book Python Essential Reference, Chapter 3, I see an example: -- http://mail.python.org/mailman/listinfo/python-list