#-*- coding:utf-8 -*-
#__author__ = 'liu-ke'
import xlrd
from xlutils.copy import copy
mybook = xlrd.open_workbook("E:\liu-ke\user.xls")
mysheet = mybook.sheet_by_name("name")
j=mysheet.nrows
b=copy(mybook)
c=b.get_sheet(0)
c.write(9,1,"liu-ke")
b.save("E:\liu-ke\user.xls") for i in range(1,j):
print mysheet.cell(i,0).value
相关文章
- 12-20使用Python实现主成分分析(PCA)
- 12-20C# 冻结Excel窗口以锁定行/列、或解除冻结
- 12-202024.4.19 Python爬虫复习day07 可视化3
- 12-20【azure笔记 1】容器实例管理python sdk封装
- 12-20python内置函数dir、divmod详解
- 12-20Python3 标准库,API文档链接
- 12-20基于Python的微博舆论分析,微博评论情感分析可视化系统-1 简介
- 12-20【Python基础】15.__new__方法及单例设计模式
- 12-20利用Python进行图像和XML标注数据的批量处理-主要函数解析
- 12-20python函数编程-装饰器decorator