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.
In Python 3, 3/2 gives the float 1.5.
But you need the rounded down integer of the division.
This is 3//2 and gives the integer 1.
All you have to do if you are in Python 3 is to change / to //.