Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #pandas #add #excel #column #save
ADD COMMENT
Topic
Name
3+9 =