国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

Python修改Excel數據的實例代碼

2020-02-23 04:55:36
字體:
來源:轉載
供稿:網友

在前面的文章中介紹了如何用Python讀寫Excel數據,今天再介紹一下如何用Python修改Excel數據。需要用到xlutils模塊。下載地址為https://pypi.python.org/pypi/xlutils。下載后執行python setup.py install命令進行安裝即可。
具體使用代碼如下:
代碼如下:
#-*-coding:utf-8-*-
from xlutils.copy import copy    # http://pypi.python.org/pypi/xlutils
from xlrd import open_workbook  # http://pypi.python.org/pypi/xlrd
from xlwt import easyxf         # http://pypi.python.org/pypi/xlwt

import sys
reload(sys)
sys.setdefaultencoding('utf-8')

# 0 based (subtract 1 from excel row number)
START_ROW = 404

ismal_index = 2
#url所在列
url_index = 12
#domain所在列
domain_index = 11
#malinfo所在列
malinfo_index = 9

file_path = "C://Users//***//Desktop//20130514.xls"
#formatting_info=True保存之前數據的格式
rb = open_workbook(file_path,formatting_info=True)
r_sheet = rb.sheet_by_index(0) # read only copy to introspect the file
wb = copy(rb) # a writable copy (I can't read values out of this, only write to it)
w_sheet = wb.get_sheet(0) # the sheet to write to within the writable copy

malurl = '''http://xbox.ooqqxx.com/res/ext.jar
            http://xbox.ooqqxx.com/res/stat.jar
            http://xbox.ooqqxx.com/pages/v.html
            http://xbox.ooqqxx.com/pages/extv.html
            http://xbox.ooqqxx.com/pages/r.html'''
domain_info = "http://xbox.ooqqxx.com"
malinfo = u"獲取惡意URL,寫入配置文件中,下載惡意可執行程序。"

#r_sheet.nrows為總行數
for row_index in range(START_ROW, r_sheet.nrows):
    #xlsvalue = r_sheet.cell(row_index, col_age_november).value
    w_sheet.write(row_index, ismal_index, u'是')
    w_sheet.write(row_index, url_index, malurl)
    w_sheet.write(row_index, domain_index, domain_info)
    w_sheet.write(row_index, malinfo_index, malinfo)
#wb.save(file_path + '.out' + os.path.splitext(file_path)[-1])
wb.save("C://Users//***//Desktop//2013.xls")

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 雅安市| 江城| 长海县| 弥勒县| 滁州市| 中超| 武功县| 明光市| 峨眉山市| 海伦市| 阿克| 鸡泽县| 汾西县| 怀来县| 兴海县| 东乡族自治县| 西安市| 汉源县| 肃北| 淮滨县| 太谷县| 罗定市| 邮箱| 吉安市| 娄底市| 韶关市| 尉犁县| 寿宁县| 安乡县| 安西县| 岚皋县| 民勤县| 太白县| 江陵县| 固阳县| 志丹县| 霸州市| 古蔺县| 囊谦县| 永丰县| 西峡县|