码迷,mamicode.com
首页 >  
搜索关键字:xlrd    ( 590个结果
Excel操作
一、读取excel中的内容 students.xml里的内容如下: import xlrd book = xlrd.open_workbook('students.xls') #打开操作的文件 sheet = book.sheet_by_index(0) #选择文件内的sheet页 # sheet ...
分类:其他好文   时间:2020-05-26 16:51:16    阅读次数:69
Windows-Exploit-Suggester的基本使用教程
下载地址 https://github.com/AonCyberLabs/Windows Exploit Suggester 第一步:安装xlrd pip install xlrd 第二步:获取漏洞库 我没想到python3 居然不行 我就用的python2 没想到成功了 会生成一个文件 第三步、生 ...
分类:Windows程序   时间:2020-05-23 18:36:58    阅读次数:137
分类模型用到的excel转csv脚本
一、应用pandas # coding=utf-8 import pandas as pd from pandas import DataFrame, Series import re def rule(item_str): """ 对内容的规则 :param item_str: str :retu ...
分类:其他好文   时间:2020-05-22 19:17:08    阅读次数:48
python里面的xlrd模块
转自:https://www.cnblogs.com/insane-Mr-Li/p/9092619.html python里面的xlrd模块详解(一) 那我就一下面积个问题对xlrd模块进行学习一下: 1.什么是xlrd模块? 2.为什么使用xlrd模块? 3.怎样使用xlrd模块? 1.什么是xl ...
分类:编程语言   时间:2020-05-18 22:19:20    阅读次数:73
用Pygal画一个英雄能力的图
效果图: 这是在google浏览器下打开的html。 play.py #!/usr/bin/env python # _*_ coding: UTF-8 _*_ """ @Project -> File : Operate_system_ModeView_structure -> play.py @ ...
分类:其他好文   时间:2020-05-15 17:50:26    阅读次数:55
python读取excel数据插入sqlite中
#!/usr/bin/env python# -*- coding:utf-8 -*-# Author: Hoganimport xlrdimport sqlite3def read_excel(fileName): # 打开文件excel workBook = xlrd.open_workbook ...
分类:数据库   时间:2020-05-12 11:27:14    阅读次数:84
excel 文件的读取和写入
1、创建excel 文件 test.xls 和写入内容 2、excel 文件的内容读取 import xlrd work = xlrd.open_workbook('test.xls','r') sheet = work.sheet_by_index(0) print(sheet.nrows) # ...
分类:其他好文   时间:2020-05-05 23:41:02    阅读次数:81
Selenium的PageObject设计模式(2)
代码与测试数据分离,读取数据源的2种方式:excel 、 yaml文件 ...
分类:其他好文   时间:2020-05-03 21:45:25    阅读次数:65
Python 对excle文件的读写、数据处理小结
一、用xlrd可打开文件、读取数据,但是用put_cell()写数据,不能修改excel文件(补充:可修改内存中的文件)。 二、用xlwt可创建文件、创建SHEET,可写入数据,保存文件。但是不能修改已创建的文件,没有open_workbook 方法。 三、若要打开一个已有的excel文件,并对其数 ...
分类:编程语言   时间:2020-05-02 17:03:01    阅读次数:105
python操作excel
1.读excel import xlrd # 打开excel data = xlrd.open_workbook("Gitee.xlsx") table = data.sheet_by_name("程序开发") # # 选择的表单页 # print(table.nrows) # 多少行 # prin ...
分类:编程语言   时间:2020-05-01 20:32:04    阅读次数:65
590条   上一页 1 ... 4 5 6 7 8 ... 59 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!