How can I delete the index in a Pandas DataFrame?

Hi all, I’m working with a Pandas DataFrame and I’m having trouble removing the index name. I’ve set the name of the index using the df.index.name attribute, but now I want to remove it.

Here’s the code I’ve tried so far:

In this code, I define a Pandas DataFrame df with three columns (‘A’, ‘B’, and ‘C’) and three rows of data. I then set the name of the index to ‘Index’ using the df.index.name attribute. When I print the DataFrame using print(df), I see that the index name is displayed.

Could someone please help me figure out how to remove the index name from the DataFrame? I’ve tried setting df.index.name = None but that doesn’t seem to work. Any help would be greatly appreciated. Thank you!