add an index column to a dataframe that starts with 1 code example
Example: df index start from 1
>>> result.index += 1
>>> result.index
Int64Index([1, 2, 3], dtype=int64)
>>> result.index += 1
>>> result.index
Int64Index([1, 2, 3], dtype=int64)