We are trying to read a sample simple csv file using pandas in python as follows -
df = pd.read_csv('example.csv')
print(df)
We need df by removing below red highlighted index column -
We have tried multiple ways by passing parameters but no luck.
Please help me in this issue!!