python读取python源代码文件_python 读写excel文件操作示例【附源码下载】
本文實例講述了python 讀寫excel文件操作。分享給大家供大家參考,具體如下:
對excel文件的操作,python有第三方的工具包支持,xlutils,在這個工具包中包含了xlrd,xlwt等工具包.利用這些工具,可以方便的對excel 進行操作。
2. 安裝,解壓下載文件之后,可以 python setup.py install
3. 應用(生成EXCEL,遍歷EXCEL,修改EXCEL,屬性控制,日期控制等)。
1) 創建 EXCEL 文件
from tempfile import TemporaryFile
from xlwt import Workbook
book = Workbook()
sheet1 = book.add_sheet('Sheet 1')
book.add_sheet('Sheet 2')
sheet1.write(0,0,'A1')
sheet1.write(0,1,'B1')
row1 = sheet1.row(1)
row1.write(0,'A2')
row1.write(1,'B2')
sheet1.col(0).width = 10000
sheet2 = book.get_sheet(1)
sheet2.row(0).write(0,'Sheet 2 A1')
sheet2.row(0).write(1,'Sheet 2 B1')
sheet2.flush_row_data()
sheet2.write(1,0,'Sheet 2 A3')
sheet2.col(0).width = 5000
sheet2.col(0).hidden = True
book.save('simple.xls')
book.save(TemporaryFile())
這樣就生成了simple.xls 文件.
2) 循環遍歷EXCEL文件
import xlrd
import xlutils.copy
import os
if __name__ == '__main__':
wb = xlrd.open_workbook('simple.xls')
for s in wb.sheets():
print 'Sheet:',s.name
for row in range(s.nrows):
values = []
for col in range(s.ncols):
values.append(s.cell(row,col).value)
print ','.join(values)
遍歷整個excel 并打印出數據
3) 修改EXCEL
import xlrd
import xlutils.copy
import os
if __name__ == '__main__':
template = "simple.xls"
workBook = xlrd.open_workbook(template,formatting_info=True)
workBook = xlutils.copy.copy(workBook)
sheet = workBook.get_sheet(0)
sheet.write(0, 0, '111')
sheet.write(0, 1, '222')
sheet.write(1, 0, '333')
sheet.write(1, 1, '444')
workBook.save('simple.xls')
完整實例代碼點擊此處本站下載。
希望本文所述對大家Python程序設計有所幫助。
總結
以上是生活随笔為你收集整理的python读取python源代码文件_python 读写excel文件操作示例【附源码下载】的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 小明一家过桥_【练习】用python解决
- 下一篇: as安装过程中gradle_在安装钢结构