diff options
author | Jovina | 2011-05-19 14:00:45 +0530 |
---|---|---|
committer | Jovina | 2011-05-19 14:00:45 +0530 |
commit | 3fafdde94954b1d4912437d78e1ff2136c51bcce (patch) | |
tree | a605090987ffd752c28858f791f5d65c9634cecf /getting_started_with_ipython/slides.org | |
parent | 8716e3e3490ec77535e28411e0d2e744580745f8 (diff) | |
download | st-scripts-3fafdde94954b1d4912437d78e1ff2136c51bcce.tar.gz st-scripts-3fafdde94954b1d4912437d78e1ff2136c51bcce.tar.bz2 st-scripts-3fafdde94954b1d4912437d78e1ff2136c51bcce.zip |
Minor changes to the scripts & slides in 1st module.
Diffstat (limited to 'getting_started_with_ipython/slides.org')
-rw-r--r-- | getting_started_with_ipython/slides.org | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/getting_started_with_ipython/slides.org b/getting_started_with_ipython/slides.org index c4a7190..e359bad 100644 --- a/getting_started_with_ipython/slides.org +++ b/getting_started_with_ipython/slides.org @@ -55,12 +55,12 @@ - use tab-completion. - look-up documentation of functions. - interrupt incomplete or incorrect commands. -* Question 1 +* Exercise 1 1. Type =ab= and hit tab to see what happens. 2. Next, just type =a= and hit tab to see what happens. -* Question 2 +* Exercise 2 Look-up the documentation of =round= and see how to use it -* Question 3 +* Exercise 3 Check the output of #+begin_src python round(2.48) @@ -73,7 +73,7 @@ #+end_src * Solution 3 We get 2.0, 2.5 and 2.48, which are what we expect. -* Question 4 +* Exercise 4 1. Type =round(2.484=, and hit enter and then cancel the command using Ctrl-C. 2. Then, type the command, =round(2.484, 2)= and resume |