国产探花免费观看_亚洲丰满少妇自慰呻吟_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")

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 特克斯县| 定边县| 瑞安市| 萝北县| 芜湖市| 正定县| 唐海县| 亳州市| 洞头县| 尚义县| 上饶市| 曲靖市| 屏东县| 三河市| 班玛县| 绿春县| 临夏市| 古蔺县| 巫山县| 永春县| 东兰县| 郁南县| 白城市| 白水县| 安国市| 娄烦县| 滨海县| 根河市| 招远市| 南丰县| 贵定县| 丰台区| 临清市| 余干县| 哈巴河县| 信阳市| 若羌县| 师宗县| 延边| 和田县| 左权县|