python中Excel的使用

打開已經存在的excel表格進行讀取: import xlrd xlsx = xlrd.open_workbook(「d:/成績表.xls」) table = xlsx.sheet_by_index(0) print(table.cell_value(0,3)) print(table.cell(0,3).value) print(table.row(0)[3].value) 新建一個excel表
相關文章
相關標籤/搜索