PersonCollection indexer

__getitem__(index)

Returns a person at the specified index.

def __getitem__(self, index: int):
    ...
ParameterTypeDescription
indexintAn index into the collection.

See Also