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.
This comment is hidden because it contains spoiler information about the solution
No need to test for '> 13' in your first 'elif' since your first 'if' guarantees that you won't go any further if 'age' is <= 13. Similarly for > 17.
What does "kumited" mean, please?
What is the method .toLowerCase(), did you create that on your own somewhere? I tried using .lower() on another kata and it didn't recognize the method (I thought it was a built in method for strings?) Any assistance is appreciated.
Edit: nevermind, saw the other kata was using python3. Still wondering what toLowerCase() is, though.
Tried cutting and pasting but format didn't translate.
Second kata so far, thanks for posting. My code seems to work except for a very strange flaw. The first line printed is indented by one space, even if the very first line of the function is "print 'blah'". So the first test fails even though the arrow is constructed and printed properly. Any idea what might be going on? I saw this in my other kata but it didn't effect the test cases for some reason.