summaryrefslogtreecommitdiff
path: root/advanced_python/arrays.rst
diff options
context:
space:
mode:
authorJovina2011-09-13 16:30:42 +0530
committerJovina2011-09-13 16:30:42 +0530
commit257dd79386cea651b45f67885e0bf3850681252c (patch)
tree7313ffea194674a2d630a2d87a035059952930f9 /advanced_python/arrays.rst
parent483021b097addf9aad7cce7fb53a3bbc9f55ffec (diff)
downloadsees-257dd79386cea651b45f67885e0bf3850681252c.tar.gz
sees-257dd79386cea651b45f67885e0bf3850681252c.tar.bz2
sees-257dd79386cea651b45f67885e0bf3850681252c.zip
Minor changes to 'advanced python'.
Diffstat (limited to 'advanced_python/arrays.rst')
-rw-r--r--advanced_python/arrays.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/advanced_python/arrays.rst b/advanced_python/arrays.rst
index f4f020a..d5699ce 100644
--- a/advanced_python/arrays.rst
+++ b/advanced_python/arrays.rst
@@ -365,12 +365,11 @@ array.
To access, the third column of C, we said, ``C[:, 2]``. Essentially, we are
accessing all the rows in column three of C. Now, let us modify this to
access only the first three rows, of column three of C.
-
We say,
::
- C[0:3, 2]
+ C[0:3, 2]
to get the elements of rows indexed from 0 to 3, 3 not included and column
indexed 2. Note that, the index before the colon is included and the index