Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
The first test case in python is incorrect. You have white spaces should be stripped at the end of the line (before \n) so the space character after pears should not appear.
Should be:
'apples, pears\ngrapes\nbananas' should equal 'apples, pears\ngrapes\nbananas'
Shouldn't be:
'apples, pears\ngrapes\nbananas' should equal 'apples, pears \ngrapes\nbananas'
there's two 3s in the 8th column.....