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.
Read the docs: https://python-reference.readthedocs.io/en/latest/docs/str/join.html about how it works. The separator is inserted between the elements of the iterable.
im a bit confused. if name = "john Smith", how does this return "J.S" and not ".JS" as we're joining our list to a string with "." already existing at index 0. How does it index to 1 in the solution? am i missing something here? im a beginner