import sys
reload(sys)
sys.setdefaultencoding('utf8') import xlrd
import xlwt
book = xlrd.open_workbook('C:/Users/13717/Desktop/sg.xls')
sheet = book.sheet_by_index(0) book1 = xlwt.Workbook() #创建文件
sheet1 = book1.add_sheet('test',cell_overwrite_ok=True)#创建工作部对象
print sheet.nrows,sheet.ncols
for i in range(sheet.nrows):
print sheet.row(i)[1].value
if sheet.row(i)[1].value == '河北':
for j in range(0,10):
sheet1.write(i,j,sheet.row(i)[j].value) #根据行号写内容 book1.save('test.xls')
相关文章
- 03-25python 写入数据
- 03-25python找出数组中第二大的数
- 03-25python下载地址备份
- 03-25Python IndexError:在VCF中查找SNP时列出索引超出范围
- 03-25变量,常量及其数据类型
- 03-25Python 使用for代替in判断一个元素属于某个集合
- 03-25python通用读取vcf文件的类(可以直接复制粘贴使用)
- 03-25python内置函数之dict()
- 03-25LabVIEW中保存数据的方法
- 03-25清除LabVIEW中波形图表或波形图中的历史数据