InterviewSolution
Saved Bookmarks
| 1. |
To start, define a function called strip_punctuation which takes one parameter, a string which represents a word, and removes characters considered punctuation from everywhere in the word. (hint: remember the .replace() method for strings.) |
| Answer» | |