Skip to content

Commit 9a723f4

Browse files
author
Eilis Hannon
committed
editted learning objectives to be more specific
1 parent aa7c316 commit 9a723f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

_episodes/01-numpy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ questions:
66
- "How can I process tabular data files in Python?"
77
objectives:
88
- "Explain what a library is, and what libraries are used for."
9-
- "Import a Python library and use the things it contains."
9+
- "Import a Python library and use the functions it contains."
1010
- "Read tabular data from a file into a program."
1111
- "Assign values to variables."
1212
- "Select individual values and subsections from data."
1313
- "Perform operations on arrays of data."
14-
- "Display simple graphs."
14+
- "Plot simple graphs from data."
1515
keypoints:
1616
- "Import a library into a program using `import libraryname`."
1717
- "Use the `numpy` library to work with arrays in Python."

_episodes/04-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ questions:
66
- "How can I do the same operations on many different files?"
77
objectives:
88
- "Use a library function to get a list of filenames that match a simple wildcard pattern."
9-
- "Use a for loop to process multiple files."
9+
- "Write a for loop to process multiple files."
1010
keypoints:
1111
- "Use `glob.glob(pattern)` to create a list of files whose names match a pattern."
1212
- "Use `*` in a pattern to match zero or more characters, and `?` to match any single character."

0 commit comments

Comments
 (0)