Hi all,
I wat to get the background color of a given cell with python from an xlsx. Iam new with it, could you please help me to finish this :
I wat to get the background color of a given cell with python from an xlsx. Iam new with it, could you please help me to finish this :
1 2 3 4 5 6 7 |
import xlrd workbook = xlrd.open_workbook( '67.xlsx' ) worksheet = workbook.sheet_by_name( 'Oldal1' ) # read a cell cell = worksheet.cell( 2 , 2 ) #print cell print cell.value |