In Scientific Programming I, list is currently used as the data container. Switch to array, which will play nicer with pandas later, allows for easy use of vectorized math, and will introduce numpy (random module has to be brought in anyway for section on if statement, might as well bring in numpy).
In Scientific Programming I, list is currently used as the data container. Switch to array, which will play nicer with
pandas
later, allows for easy use of vectorized math, and will introducenumpy
(random
module has to be brought in anyway for section on if statement, might as well bring innumpy
).