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
i
here is just a number, soi+1
is fine. If you had tried to dolines[i+1]
then you might run into an issue.But also
range(0)
is empty, so no values are computed for empty lists anyway.