Site Navigation
Append a collection of Index options together.
Examples
>>>idx=pd.Index([1,2,3])>>>idx.append(pd.Index([4]))Index([1, 2, 3, 4], dtype='int64')
Index.append()