Skip to content

Commit

Permalink
markdown source builds
Browse files Browse the repository at this point in the history
Auto-generated via {sandpaper}
Source  : fd81e1e
Branch  : main
Author  : Allen Lee <[email protected]>
Time    : 2024-03-05 21:00:11 +0000
Message : Merge pull request #667 from wgriffa/patch-4

separate print statements for clarity and avoid tuple-izing them for convenience
  • Loading branch information
actions-user committed Mar 5, 2024
1 parent b0b89c4 commit f02b0bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion 14-looping-data-sets.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,9 @@ directories. In the example below, we create a `Path` object and inspect its att
from pathlib import Path

p = Path("data/gapminder_gdp_africa.csv")
print(p.parent), print(p.stem), print(p.suffix)
print(p.parent)
print(p.stem)
print(p.suffix)
```

```output
Expand Down
2 changes: 1 addition & 1 deletion md5sum.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"episodes/11-lists.md" "1257daeb542377a3b04c6bec0d0ffee1" "site/built/11-lists.md" "2023-07-24"
"episodes/12-for-loops.md" "1da6e4e57a25f8d4fd64802c2eb682c4" "site/built/12-for-loops.md" "2023-05-02"
"episodes/13-conditionals.md" "2739086f688f386c32ce56400c6b27e2" "site/built/13-conditionals.md" "2024-02-16"
"episodes/14-looping-data-sets.md" "33bc3751e02186ba42ba35d937b03889" "site/built/14-looping-data-sets.md" "2024-03-05"
"episodes/14-looping-data-sets.md" "fb2992c34b244b375302ffb15bd25b8d" "site/built/14-looping-data-sets.md" "2024-03-05"
"episodes/15-coffee.md" "062bae79eb17ee57f183b21658a8d813" "site/built/15-coffee.md" "2023-05-02"
"episodes/16-writing-functions.md" "0f162f45b0072659b0113baf01ade027" "site/built/16-writing-functions.md" "2023-07-24"
"episodes/17-scope.md" "8109afb18f278a482083d867ad80da6e" "site/built/17-scope.md" "2023-05-02"
Expand Down

0 comments on commit f02b0bd

Please sign in to comment.