File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ questions:
66- " How can I process tabular data files in Python?"
77objectives :
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 ."
1515keypoints :
1616- " Import a library into a program using `import libraryname`."
1717- " Use the `numpy` library to work with arrays in Python."
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ questions:
66- " How can I do the same operations on many different files?"
77objectives :
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."
1010keypoints :
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."
You can’t perform that action at this time.
0 commit comments