1. 程式人生 > >python讀取xls檔案

python讀取xls檔案

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time    : 2018/10/17 14:41
# @Author  : Sa.Song
# @Desc    : 
# @File    : read_xls.py
# @Software: PyCharm
import sys
from xlrd import open_workbook # xlrd用於讀取xld
import xlwt  # 用於寫入xls
workbook = open_workbook(r'C:\Users\songsa\Desktop\maoyan_comment.xls')  #
開啟xls檔案 sheet_name= workbook.sheet_names() # 列印所有sheet名稱,是個列表 sheet = workbook.sheet_by_index(0) # 根據sheet索引讀取sheet中的所有內容 sheet1= workbook.sheet_by_name('Sheet1') # 根據sheet名稱讀取sheet中的所有內容 print(sheet.name, sheet.nrows, sheet.ncols) # sheet的名稱、行數、列數 content = sheet.col_values(7) # 第六列內容 print(content)