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.
it is solution from chat gpt
You cam make a method static by the @staticmethod decorator.
The reason a static method is a static method is because it doesn't require self or cls.
It doesn't matter for this particular kata, but static methods don't have a
self
arg in the sense that other class methods have aself
arg that refers to the instance of the class. What you'll actually get inself
here is the first passed-in argument, which could be anything.Can we have this is Python?
Edit: Created Python translation and hit publish, no idea how adding it to the main Kata works.