Skip to content

Commit ac442bf

Browse files
committed
changed references to "lesson**" from "session**" for the exercise submissions.
1 parent 7da2e15 commit ac442bf

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

source/exercises/dict_lab.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Learn the basic ins and outs of Python dictionaries and sets.
1515
Procedure
1616
---------
1717

18-
In your student dir in the class repo, create a ``session04`` dir and put in a new ``dict_lab.py`` file.
18+
In your student dir in the class repo, create a ``lesson04`` dir and put in a new ``dict_lab.py`` file.
1919

2020
The file should be an executable Python script. That is to say that one
2121
should be able to run the script directly like so:

source/exercises/except_exercise.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This is a little exercise that shows you how to handle exceptions in a way that
99
Procedure
1010
=========
1111

12-
Here are two files that you should put in your ``session05`` directory in the class repo.
12+
Here are two files that you should put in your ``lesson05`` directory in the class repo.
1313

1414
:download:`except_exercise.py`
1515

source/exercises/fib_and_lucas.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ We will write a function that computes this series -- then generalize it.
2525
Step 1
2626
------
2727

28-
* Create a new module ``series.py`` in the ``session02`` folder in your student folder.
28+
* Create a new module ``series.py`` in the ``lesson02`` folder in your student folder.
2929

3030
- In it, add a function called ``fibonacci``.
3131

source/exercises/list_lab.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ to query the user for info at the command line, you use:
2929
Procedure
3030
---------
3131

32-
In your student dir in the class repo, create a ``session03`` dir and put in a new ``list_lab.py`` file.
32+
In your student dir in the class repo, create a ``lesson03`` dir and put in a new ``list_lab.py`` file.
3333

3434
The file should be an executable Python script. That is to say that one
3535
should be able to run the script directly like so:

source/exercises/python_pushups.rst

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Task 1: Explore Errors
1111

1212
* Create a new directory in your working dir for the class::
1313

14-
$ mkdir session01
15-
$ cd session01
14+
$ mkdir lesson01
15+
$ cd lesson01
1616

1717
* Add a new file to it called ``break_me.py``
1818

@@ -38,3 +38,8 @@ exercises at "Coding Bat": http://codingbat.com/python
3838
There are 8 sets of puzzles. Do as many as you can, but try to get to at least
3939
the "Warmups".
4040

41+
While the codingbat site has a great interface for submitting your solution and see if it works, we suggest you write your code in your regular text editor and get it to run on your machine first.
42+
43+
Put at least one solution in the ``lesson1`` folder you created in git and submit it via pull request.
44+
45+

source/exercises/rot13.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ circle, so it wraps around).
2222
The task
2323
--------
2424

25-
Add a python module named ``rot13.py`` to the session03 dir in your student dir. This module should provide at least one function called ``rot13`` that takes any amount of text and returns that same text encrypted by ROT13.
25+
Add a python module named ``rot13.py`` to the lesson03 dir in your student dir. This module should provide at least one function called ``rot13`` that takes any amount of text and returns that same text encrypted by ROT13.
2626

2727
This function should preserve whitespace, punctuation and capitalization.
2828

0 commit comments

Comments
 (0)