File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ being the first loop cycle, and 6 being the final loop cycle).
160160We can call the [ loop variable] ({{ page.root }}/reference.html#loop-variable) anything we like, but
161161there must be a colon at the end of the line starting the loop, and we must indent anything we
162162want to run inside the loop. Unlike many other languages, there is no command to signify the end
163- of the loop body (e.g. ` end for ` ); what is indented after the ` for ` statement belongs to the loop.
163+ of the loop body (e.g. ` end for ` ); everything indented after the ` for ` statement belongs to the loop.
164164
165165
166166> ## What's in a name?
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ keypoints:
1818The Jupyter Notebook and other interactive tools are great for prototyping code and exploring data,
1919but sooner or later we will want to use our program in a pipeline
2020or run it in a shell script to process thousands of data files.
21- In order to do that,
21+ In order to do that in an efficient way ,
2222we need to make our programs work like other Unix command-line tools.
2323For example,
2424we may want a program that reads a dataset
@@ -79,7 +79,7 @@ We'll tackle these questions in turn below.
7979
8080## Command-Line Arguments
8181
82- Using the text editor of your choice,
82+ We are going to create a file with our python code in, then use the bash shell to run the code. Using the text editor of your choice,
8383save the following in a text file called ` sys_version.py ` :
8484
8585~~~
You can’t perform that action at this time.
0 commit comments