import numpy as np
import pandas as pd
from pandas import ExcelWriter
import matplotlib.pyplot as plt
liste = pd.read_excel("testListe.xlsx")
#delete the numbering column in dataframe
liste.to_excel("output.xlsx")
It seems like you want to save without index:
liste.to_excel("output.xlsx", index=False)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With