Posts by Danilo Carvalho Silva • 33 points
2 posts
-
0
votes2
answers547
viewsA: Column problems in Python XLRD
Thank you mgibsonbr! I solved it this way: while curr_col < num_cols: soma = 0 curr_col = curr_col +1 curr_row = 0 while curr_row < num_rows: curr_row = curr_row + 1 row =…
-
2
votes2
answers547
viewsQ: Column problems in Python XLRD
I am a beginner in Python and am trying to make a script to sum all the values of an excel column and write the sum value in the spreadsheet. I’m using the Python xlrd and xlwt packages. The code…