Python xlrd读取单元格值语法错误

时间:2016-03-01 08:38:40

标签: python

我正在尝试学习 xlrd 。当我尝试在工作表中打印Cell的值时出现错误。

这是我的代码

    workbook=xlrd.open_workbook(file_location)
    sheet=workbook.sheet_by_index(0)
    sheet.cell_value(0,0)

 'Test Case ID'

    sheet.nrows

15

    sheet.ncols

2

    for col in range(sheet.ncols):
        print sheet.cell_value(0,col

SyntaxError: invalid syntax

请帮我解决此错误

0 个答案:

没有答案