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.
Niice
I'm new too starts about a week ago, for what I understand in enumerate the first i is index starting from 0. Each time it iterates the i will +1. So by using enumerate we have a default i that starts at 0 and +1 everytime. Since the i comes with the enumerate function itself thus we don't need to create another variable to increase p.
so s += pow(int(c),p+i), p+i = 0 at the first time which is p itself, then p+1, p+2 ....
damn, this is so good.