Answers for "pandas add value to excel column and save"

0

pandas add value to excel column and save

import pandas as pd;
df = pd.read_excel("./YourExcel.xlsx");
YourDataInAList = [12.34,17.56,12.45];
df = df.append({"ColumnName": YourDataInAList}, ignore_index=True)
df.to_excel("./YourNewExcel.xlsx",index=False);
Posted by: Guest on July-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language