The idea here is to turn any string i.e. (This is my blog's title) and
turn it into this-is-my-blogs-title. This can be achieved by first
changing all of the non word characters to spaces. Then, split the
string up by space (string.split() defaults to splitting by " ") and
then joining it back together again with "-" in between them.
The only 2 pieces left are lower(), which makes the string lowercase, and
strip() which strips leading and trailing whitespace.
Yup, you're exactly write. Typo on my part. Sorry about that.