summaryrefslogtreecommitdiff
path: root/getting-started-ipython/script.rst
diff options
context:
space:
mode:
authorBhanukiran2010-11-07 00:04:06 +0530
committerBhanukiran2010-11-07 00:04:06 +0530
commited91dd94e5f4cbdab51e8354424c10340b5b7ecc (patch)
tree7219f03f96c7c574f628d28ae3f2f81102746844 /getting-started-ipython/script.rst
parente4190a104d28953fd712f797561c5d70187d194f (diff)
downloadst-scripts-ed91dd94e5f4cbdab51e8354424c10340b5b7ecc.tar.gz
st-scripts-ed91dd94e5f4cbdab51e8354424c10340b5b7ecc.tar.bz2
st-scripts-ed91dd94e5f4cbdab51e8354424c10340b5b7ecc.zip
checked the language for `loading data from files`
and check list done by Anand.
Diffstat (limited to 'getting-started-ipython/script.rst')
-rw-r--r--getting-started-ipython/script.rst7
1 files changed, 4 insertions, 3 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.