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

Commit

Permalink
Merge pull request #14 from mhkuu/patch-1
Browse files Browse the repository at this point in the history
References to 3.4 instead of 3.3
  • Loading branch information
fbkarsdorp committed Jan 24, 2015
2 parents 759d4ce + 89627bd commit 57954ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Chapter 3 - Text analysis.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"**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)."
"**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)."
]
},
{
Expand All @@ -528,7 +528,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"**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)"
"**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)"
]
},
{
Expand Down Expand Up @@ -1267,4 +1267,4 @@
"metadata": {}
}
]
}
}

0 comments on commit 57954ef

Please sign in to comment.