Skip to content

Commit 5d4fca6

Browse files
codingS3bldko
andauthored
Change wording about glob being an unpleasant name (#939)
* Change wording about glob being an unpleasant name * reformulate glob introduction * Add linebreak and highlight file name and extension Co-authored-by: Lauren Ko <[email protected]> Co-authored-by: Lauren Ko <[email protected]>
1 parent 418a6b8 commit 5d4fca6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_episodes/06-files.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ keypoints:
1212
- "Use `*` in a pattern to match zero or more characters, and `?` to match any single character."
1313
---
1414

15-
We now have almost everything we need to process all our data files.
16-
The only thing that's missing is a library with a rather unpleasant name:
17-
15+
As a final piece to processing our inflammation data, we need a way to get a list of all the files
16+
in our `data` directory whose names start with `inflammation-` and end with `.csv`.
17+
The following library will help us to achieve this:
1818
~~~
1919
import glob
2020
~~~

0 commit comments

Comments
 (0)