这篇文章主要介绍了python对excel交互工具怎么使用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇python对excel交互工具怎么使用文章都会有所收获,下面我们一起来看看吧。
python 对excel的 读入 与 改写
(对比xlwt、openpyxl、xlrd)
xlwt不支持写xlsx文件。
openpyxl不支持读xls文件。
计划任务xlrd支持读xls,xlsx文件。
计划任务推荐读文件用xlrd,写文件用openpyxl。
#一、xlrd 读# 1.引入库& 下载库 xlrdpip install xlrd # 下载pip show xlrd # 显示版本pip install xlrd==1.2.0 # 下载指定版本import xlrd# 导入workBook = xlrd.open_workbook('D:\project\info.xls', 'rb') # 打开文件workBook = xlrd.open_workbook(r'D:\project\info.xls') allSheetNames = workBook.sheet_names() # 获取所有sheet的名字(list类型) SheetName1= workBook.sheet_names()[0]# 按索引号 print(allSheetNames, SheetName1)#输出:['Sheet1', 'Sheet2', 'Sheet3'] Sheet1# 获取sheet内容sheet1_content1 = workBook.sheet_by_index(0) # sheet索引从0开始sheet1_content2 = workBook.sheet_by_name('sheet1') # 按sheet名字获取# 获取整行和整列的值(数组)print(sheet1_content1.name,sheet1_content1.nrows,sheet1_content1.ncols)# 获取整行和整列的值(数组)rows = sheet1_content1.row_values(3) # 获取第四行内容cols = sheet1_content1.col_values(2) # 获取第三列内容print(rows)print(cols )# 获取单元格内容(三种方式)print(sheet1_content1.cell(1, 0).value)print(sheet1_content1.cell_value(2, 2))print(sheet1_content1.row(2)[2].value)
二、python 写入数据
1 、 xlwt包写入Excel文件
xlwt 写库的局限性: 只能写入新建的 excel。
(写入打开文档 可用xlutils.copy的 copy 复制一份)
xlwt中生成的xls文件最多能支持65536行数据
创建表写入数据# 向execl中 批量写入虚假数据import xlwt,faker,randomwb=xlwt.Workbook()sheet002=wb.add_sheet("002")head=["姓名","年龄","性别"]for h in head: sheet002.write(0,head.index(h),h) #利用for 循环 挨个写入 数据 行,列,数据值 这里列使用下标即可fake=faker.Faker()for i in range(1,101): sheet002.write(i, 0, fake.name()) sheet002.write(i, 1, random.randint(10,60)) sheet002.write(i, 2, random.choice(['男','女']))wb.save("002.xls")
#2 复制表写入数据import xlwtimport xlrdimport xlutils.copyrd = xlrd.open_workbook("Hello.xls", formatting_info = True) # 打开文件wt = xlutils.copy.copy(rd) # 复制sheets = wt.get_sheet(0) # 读取第一个工作表sheets.write(m, n, "I love you!") # 向 m-1 行 n-1 列的单元格写入内容wt.save("Hi.xls") # 保存
2、openpyx 只可以读xlsx 不可读xls文档
xl = openpyxl.load_workbook('D:\project\infoexcel.xlsx', data_only=True) # 设置工作表 sheet1 = xl.worksheets[0] for i in range(1, 24): sheet1.cell(i, 3).value = cvalue # 保存表格 xl.save('D:\project\infoexcel.xlsx')
关于“python对excel交互工具怎么使用”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“python对excel交互工具怎么使用”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。