Write the names of the students at your table:
Daily temperature records
Social media connections (who follows who)
A collection of textbooks
A course gradebook
Daily sky conditions (cloudy, sunny, foggy, etc.)
Browsing history of all users of Google Chrome
All youtube videos
A database of WWU students
Satellite images of the USA
An org chart (who works for who)
numpy
, our favorite Python numerical
computation library. Go to the department’s JupyterHub, start a Jupyter
server, and create a new notebook. For each of the following subtasks,
create a Markdown cell with a descriptive title, followed by a code cell
that answers the question.
import numpy as np
0.1 + 0.2 == 0.3
returns
False
.np.iinfo
on some different integer datatypes
(np.[u]int{8,32,64}
to see the exact limits of those
types.np.finfo
on some different floating-point
datatypes (np.float{16,32,64}
) to see what numpy can tell
you about them.