Exercise 2#

Note

Please complete this exercise by the start of the next lesson.

Start your assignment

You can start working on your copy of Exercise 2 by accepting the GitHub Classroom assignment.

You can also take a look at the template repository for Exercise 2 on GitHub (does not require logging in). Note that you should not try to make changes to this copy of the exercise, but rather only to the copy available via GitHub Classroom.

Pair programming

Students attending the course in Helsinki, note that we are working in pairs on this exercise. We will only grade the repository of the member of your pair that is responsible for this week’s exercise. See more information in Discord and on the course page under Why are we working in pairs?

Cloud computing environments#

https://img.shields.io/badge/launch-binder-red.svg https://img.shields.io/badge/launch-CSC%20notebook-blue.svg

Exercise 2 hints#

Here are a few things that may be helpful in completing Exercise 2.

Git#

You can find step-by-step instructions for using Git on the course page titled Meet Git. Remember to commit your changes after each major edit! Also, it’s better to push your changes to GitHub frequently, rather than only at the very end of the exercise.

Indentation woes#

We have not really run into this problem in the lessons, but Python codes are sensitive to how much you indent the start of each line. This is perhaps easiest to see with an example.

name = 'Dave'
    dogs = 0
print('My name is', name, 'and I own', dogs, 'dogs.')

If you copy and paste this code into a Jupyter Notebook cell and run it, you will see that is gives an IndentationError.

    dogs = 0
    ^
IndentationError: unexpected indent

We will see examples later of why indentation matters, but for now just be sure you don’t indent lines to different levels. Thus, the fix is simply to remove the spaces on the second line.

name = 'Dave'
dogs = 0
print('My name is', name, 'and I own', dogs, 'dogs.')

Now, running the code results in the expected output.

My name is Dave and I own 0 dogs.