> For the complete documentation index, see [llms.txt](https://wiki.smhuda.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.smhuda.com/programming/python/removing-index-column-pandas.md).

# Removing Index Column Pandas

Use `index=False`.

```
df.to_csv('your.csv', index=False)
```
