01.02 - Jupyter Exercises 1

Exercises rating:

★☆☆ - You should be able to do it based on Python knowledge plus the text.

★★☆ - You will need to do extra thinking and some extra reading/searching.

★★★ - The answer is difficult to find by a simple search, requires you to do a considerable amount of extra work by yourself (feel free to ignore these exercises if you're short on time).

1. Download the exercises, open the notebook and execute the following. (★☆☆)

In [ ]:
print('Hello Data')

2. Write a Python function that find the mean of a list of numbers. (★☆☆)

In [ ]:
 

3. Write a Python function that find the median of a list of numbers. (★☆☆)

In [ ]: