Implement in python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Implement in python

I have an Excel document, this document has 7 columns and 700 rows; At the first step, I want to compute for example x[i]+y[i] for each row and save them into an array variable. after that, I want to export it into an Excel file. I want to implement this process in python. What is the best solution for this? Thank you.

11th Nov 2020, 4:55 PM
Moosa Kalanaki
Moosa Kalanaki - avatar
2 Answers
0
And what is x[i], y[i]?
11th Nov 2020, 6:23 PM
Václav Dostál
Václav Dostál - avatar
0
I recommend xlrd ( pip install xlrd), then first line of your code or function should be : import xlrd
11th Nov 2020, 6:25 PM
Václav Dostál
Václav Dostál - avatar