Excelのセルの値を呼び出したい
タイトル通りなのですが、sheetのところでエラーになってしまいます。
ご教授いただけましたら幸いです、よろしくお願いいたします。
import xlrd
file_location = "/Users/names/Book2.xlsx"
workbook = xlrd.open_workbook(file_location)
sheet = workbook.sheet_by_index(0)
sheet.cell_value(0,0)
sheet.nrows
shoot.ncols
for col in range(sheet.ncols):
print sheet.cell_value(0,col)
File "/Users/names/Desktop/\u6cb3\u91ce\u662d\u543e/excel5.py", line 9
print sheet.cell_value(0,col)
^
SyntaxError: invalid syntax
[Finished in 0.072s]