LINUX下 Python獲取xlsx格式的檔案內容轉到txt 小文字

clamshine發表於2016-12-01

一些小文字 。。檔案處理啥的。。
嗯Windows·下和LINUX碼的不一致 這點需要注意
記得安裝xlrd模組 pip install xlrd  轉完之後 我是用shell提取插入到資料庫 囧還不怎麼會用Python提取資料。。。。 晚上回去寫註釋

#-*- coding: utf-8 -*-
import xlrd
import sys
import re
import codecs


data = xlrd.open_workbook('/tmp/test.xlsx')
table = data.sheets()[0]
nrows = table.nrows
file = open("/tmp/testfile.txt","w")
for i in range(nrows):
    l = table.row_values(i)
    for k in l:
        file.write(str(k.encode('UTF-8'))+"\n")

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30629069/viewspace-2129467/,如需轉載,請註明出處,否則將追究法律責任。

相關文章