• + 0 comments

    .split()returns list. [n] returns n-th element of that list.

    >>> 'hello world'.split()
    ['hello', 'world']
    >>> 'hello world'.split()[1]
    'world'