Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed lab 2 - question 4b testcases to unicode strings. #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions ML_lab2_word_count_student.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -608,9 +608,9 @@
" str: The cleaned up string.\n",
" \"\"\"\n",
" <FILL IN>\n",
"print removePunctuation('Hi, you!')\n",
"print removePunctuation(' No under_score!')\n",
"print removePunctuation(' * Remove punctuation then spaces * ')"
"print removePunctuation(u'Hi, you!')\n",
"print removePunctuation(u' No under_score!')\n",
"print removePunctuation(u' * Remove punctuation then spaces * ')"
]
},
{
Expand All @@ -622,8 +622,8 @@
"outputs": [],
"source": [
"# TEST Capitalization and punctuation (4b)\n",
"Test.assertEquals(removePunctuation(\" The Elephant's 4 cats. \"),\n",
" 'the elephants 4 cats',\n",
"Test.assertEquals(removePunctuation(u\" The Elephant's 4 cats. \"),\n",
" u'the elephants 4 cats',\n",
" 'incorrect definition for removePunctuation function')"
]
},
Expand Down