Skip to content
This repository was archived by the owner on Mar 8, 2021. It is now read-only.

Commit 89627bd

Browse files
committed
References tot 3.4 instead of 3.3
In chapter 3 you reference to documentation of 3.3, while elsewhere you reference to 3.4. A small inconsistency in your otherwise great course :)
1 parent 759d4ce commit 89627bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Chapter 3 - Text analysis.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@
504504
"cell_type": "markdown",
505505
"metadata": {},
506506
"source": [
507-
"**1)** Write a function `remove_txt` that takes as argument a string and some extension that you want to remove. It should return the string without the extension. Tip: use the function `splitext` from the `os.path` module. Look up the documentation [here](http://docs.python.org/3.3/library/os.path.html#os.path.splitext)."
507+
"**1)** Write a function `remove_txt` that takes as argument a string and some extension that you want to remove. It should return the string without the extension. Tip: use the function `splitext` from the `os.path` module. Look up the documentation [here](http://docs.python.org/3.4/library/os.path.html#os.path.splitext)."
508508
]
509509
},
510510
{
@@ -528,7 +528,7 @@
528528
"cell_type": "markdown",
529529
"metadata": {},
530530
"source": [
531-
"**2)** Write a function `remove_dir` that takes as argument a filepath and removes the directory from a filepath. Tip: use the function `basename` from the `os.path` module. Look up the document [here](http://docs.python.org/3.3/library/os.path.html#os.path.basename)"
531+
"**2)** Write a function `remove_dir` that takes as argument a filepath and removes the directory from a filepath. Tip: use the function `basename` from the `os.path` module. Look up the document [here](http://docs.python.org/3.4/library/os.path.html#os.path.basename)"
532532
]
533533
},
534534
{
@@ -1267,4 +1267,4 @@
12671267
"metadata": {}
12681268
}
12691269
]
1270-
}
1270+
}

0 commit comments

Comments
 (0)