summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--getting-started-ipython/script.rst7
-rw-r--r--loading-data-from-files/script.rst6
2 files changed, 8 insertions, 5 deletions
diff --git a/getting-started-ipython/script.rst b/getting-started-ipython/script.rst
index 4388683..703cccc 100644
--- a/getting-started-ipython/script.rst
+++ b/getting-started-ipython/script.rst
@@ -17,6 +17,7 @@
.. Author : Puneeth
Internal Reviewer : Anoop Jacob Thomas<anoop@fossee.in>
+ Language Review : Bhanukiran
External Reviewer :
Checklist OK? : <put date stamp here, if OK> [2010-10-05]
@@ -95,11 +96,11 @@ Now, let's change the previous command ``print 1+2`` to ``print
10*2``. We use the up arrow again to navigate to the previous command
and use the left arrow key to move the cursor on to the + symbol and
then use the delete key to remove it and type 0 and * to change the
-expression to the required one. We hit enter to see the output of
+expression as required. We hit enter to see the output of
``print``.
Now, let's say we want to use the function ``round``. We type ``ro``
-at the prompt and hit the tab key. As you can see, the IPython
+at the prompt and hit the tab key. As you can see, IPython
completes the command. This feature is called the tab-completion.
Now, we remove all the characters and just type ``r`` and then hit
@@ -176,7 +177,7 @@ Please, pause the video here. Do the exercises and then continue.
We get 2.0, 2.5 and 2.48, which are what we expect.
-Let's now see how to correct typing errors that we make when typing at
+Let's now see how to correct typing errors that we make while typing at
the terminal. As already shown, if we haven't hit the enter key
already, we could navigate using the arrow keys and make deletions
using delete or backspace key and correct the errors.
diff --git a/loading-data-from-files/script.rst b/loading-data-from-files/script.rst
index ff4ce19..421afac 100644
--- a/loading-data-from-files/script.rst
+++ b/loading-data-from-files/script.rst
@@ -14,9 +14,11 @@
.. 1. getting started with ``ipython``
+.. #[Anand: author and internal reviewer not mentioned]
.. Author :
Internal Reviewer :
External Reviewer :
+ Language Reviewer : Bhanukiran
Checklist OK? : <put date stamp here, if OK> [2010-10-05]
Script
@@ -96,7 +98,7 @@ equal number of rows.
.. cat /home/fossee/pendulum.txt
.. #[Nishanth]: The first column is L values and second is T values
- from a simle pelculum experiment.
+ from a simple pendulum experiment.
Since you are using the variable names later in the
script.
Not necessary but can be included also.
@@ -133,7 +135,7 @@ Let us now, print the variables L and T, to see what they contain.
Notice, that L and T now contain the first and second columns of data
from the data file, ``pendulum.txt``, and they are both simple
-sequences. ``unpack=True`` has given us the two columns in to two
+sequences. ``unpack=True`` has given us the two columns into two
separate sequences instead of one complex sequence.
{{{ show the slide with loadtxt --- other features }}}