File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ exercises: 10
88
99- "Explain what a library is and what libraries are used for."
1010- "Import a Python library and use the functions it contains."
11- - "Select individual values and subsections from data."
11+ - "Select individual values from data."
1212- "Perform operations on arrays of data."
1313
1414::::::::::::::::::::::::::::::::::::::::::::::::::
@@ -384,12 +384,11 @@ Median Temperature: 3.9305999279022217
384384:::::::::::::::::::::::::::::::::::::::::: keypoints
385385
386386- "Import a library into a program using ` import libraryname ` ."
387+ - "The ` argopy ` library can load Argo float data over the internet from the GDAC"
387388- "Use the ` numpy ` library to work with arrays in Python."
388389- "The expression ` array.shape ` gives the shape of an array."
389- - "Use ` array[x, y ] ` to select a single element from a 2D array."
390+ - "Use ` array[x] ` to select a single element from a 1D array."
390391- "Array indices start at 0, not 1."
391- - "Use ` low:high ` to specify a ` slice ` that includes the indices from ` low ` to ` high-1 ` ."
392392- "Use ` numpy.mean(array) ` , ` numpy.max(array) ` , and ` numpy.min(array) ` to calculate simple statistics."
393- - "The ` argopy ` library can load Argo float data over the internet from the GDAC"
394393
395394::::::::::::::::::::::::::::::::::::::::::::::::::
You can’t perform that action at this time.
0 commit comments