Python xlwt:在编写bug时使用easyxf对单元格进行样式化

时间:2012-08-16 20:43:37

标签: python styles xlwt

我需要在我通过程序创建的xls文件中对某些单元格和行进行样式化,但是我遇到了一些问题,可能是对xlwt easyxf内容如何工作的误解。

首先,如果我写入没有值的单元格而只是样式,那么内部的值是否会被删除?

其次,我正在尝试使用单元格的样式和值写入单元格,但我一直收到错误:

"TypeError: 'XFStyle' object is not callable". -Solved

现在的问题是样式没有实现。写入单元格并将其输出到xls文件后,根本没有颜色,bg,大小,字体更改。

我尝试使用Google搜索并关注其他人的示例,但无论出于何种原因,我的代码都无效。这是:

def stylize_spreadsheet_accordingly(iFile, workbook, row_grey, row_underline, row_font_size, cells_yellow):
    #this time iFile is the file you're overwriting

    #styling stuff

    print "styling the document..."

    new_sheet.col(0).width = 256 * 18
    new_sheet.col(1).width = 256 * 69.43
    new_sheet.col(2).width = 256 * 9
    new_sheet.col(3).width = 256 * 20.71
    new_sheet.col(4).width = 256 * 8.43

    font_size_style = xlwt.easyxf('font: name Calibri, bold on, height 280;')
    font_underline_style = xlwt.easyxf('font: underline on;')
    fill_grey_style = xlwt.easyxf('pattern: back_color gray25;')
    fill_yellow_style = xlwt.easyxf('pattern: back_color yellow;')

    iBook = open_workbook(iFile)
    iSheet = iBook.sheet_by_index(0)

    for row_index in range(iSheet.nrows):
        if row_index in row_grey:
            for col_index in range(iSheet.ncols):
                new_sheet.write(row_index,col_index, iSheet.cell(row_index,col_index).value, fill_grey_style)
        if row_index in row_underline:
            for col_index in range(iSheet.ncols):
                new_sheet.write(row_index,col_index, iSheet.cell(row_index,col_index).value, font_underline_style)
        if row_index in row_font_size:
            for col_index in range(iSheet.ncols):
                new_sheet.write(row_index,col_index, iSheet.cell(row_index,col_index).value, font_size_style)
    for each in cells_yellow:
        new_sheet.write(each[0], each[1], iSheet.cell(each[0],each[1]).value, fill_yellow_style)

    return workbook

new_sheet是一个全局变量,我在另一个函数中创建,表示我添加到我的xlwt工作簿中的工作表。我传入的工作簿是应该包含new_sheet的文件。我可能会过度复杂化或不道德地做,但它确实有效。

P.S。如果我有不同的方式可以做到这一点或者以不同的方式将某些单元格改为全彩色,请告诉我。再一次,谢谢。

谢谢,我修改了你们所说的代码,TypeError消失了,但是在完成之后,我创建和使用的样式选项都没有通过。 xls文件仍然是默认格式。怎么会这样?

3 个答案:

答案 0 :(得分:2)

您收到'XFStyle' object is not callable因为您将其称为函数而不是仅将其传递给sheet.write,例如

而不是

new_sheet.write(row_index,col_index, iSheet.cell(row_index,col_index).value, fill_grey_style())

使用

new_sheet.write(row_index,col_index, iSheet.cell(row_index,col_index).value, fill_grey_style)

答案 1 :(得分:0)

您正在创建样式,然后尝试调用它们。

例如:

font_size_style = xlwt.easyxf('font: name Calibri, bold on, height 280;')
...
new_sheet.write(row_index,col_index, iSheet.cell(row_index,col_index).value, fill_grey_style())

注意这一点:

fill_grey_style()

答案 2 :(得分:0)

以下代码段可能会对您有所帮助,我使用此代码将列填充为灰色

dep_style = xlwt.easyxf('font: bold on,height 200;''align: horiz left;''borders: left 
thin, right thin, top thin, bottom thin')

import xlwt
pattern = xlwt.Pattern()
pattern.pattern = xlwt.Pattern.SOLID_PATTERN
pattern.pattern_fore_colour = xlwt.Style.colour_map['gray25']
dep_style.pattern = pattern
sheet1.write_merge(s2,s2,0,int(count[0])+13,dep_data['department_name'],dep_style)

以上代码为我提供了灰色行,并在其中附加了名称。 您可以根据需要更改此代码