当前位置: 首页 > news >正文

个人网站可以做企业宣传桂林网页

个人网站可以做企业宣传,桂林网页,wordpress id97,php网站开发 多少钱目录 1.xlrd-Excel的读模块 安装 使用 获取工作簿 读取工作簿的内容 xlsxwriter-Excel的写模块 安装 使用 生成图表 add_series参数 图表的样式 demo:生成图表 Excel的操作在python中有多个模块,为了能够快速使用,选择了相对简单…

目录

1.xlrd-Excel的读模块

安装

使用

获取工作簿

读取工作簿的内容

xlsxwriter-Excel的写模块

安装

使用

生成图表

add_series参数

图表的样式

demo:生成图表

Excel的操作在python中有多个模块,为了能够快速使用,选择了相对简单且功能全面的模块来介绍。

1.xlrd-Excel的读模块

安装

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple xlrd==1.2.0

导入: import xlrd

使用

book=xlrd.open_workbook(excel文件)

获取工作簿

读取工作簿的内容

import xlrdbook=xlrd.open_workbook("小小小向日葵.xlsx")sheet0=book.sheet_by_index(0)print("总行数:",sheet0.nrows)
print("总列数:",sheet0.ncols)for s in sheet0.get_rows():#print(s)values=[]for i in s:values.append(i.value)print(values)

xlsxwriter-Excel的写模块

安装

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple xlsxwriter

导入 import xlsxwriter

使用

#生成excel对象

book=xlswriter.Workbook("Excel文件名")

#创建工作簿

sheet=book.add_sheet(工作簿)

demo:复制Excel

# coding:utf-8import xlrd
import xlsxwriterdef copy_excel(path,newfile):#读取Excelbook=xlrd.open_workbook(path)sheets=book.sheets()newbook = xlsxwriter.Workbook(newfile)for sheet in sheets:sheetname=sheet.name#根据名称读取工作簿sheet = book.sheet_by_name(sheetname)#创建新的工作簿newsheet=newbook.add_worksheet(sheetname)#读取工作簿数据for index,row in enumerate(sheet.get_rows()):print("index:{},rows:{}".format(index,row))for sub_index,sub_row in enumerate(row):newsheet.write(index,sub_index,sub_row.value)newbook.close()if __name__ == '__main__':copy_excel("医生信息.xlsx",newfile="医生信息1.xlsx")

生成图表

add_series参数

图表的样式

demo:生成图表

# coding:utf-8import xlsxwriterif __name__ == '__main__':book=xlsxwriter.Workbook("图表Excel.xlsx")sheet=book.add_worksheet("图表")data=[["优秀","良好","中","差"],[100, 200, 5, 10]]sheet.write_column("A1", data[0])sheet.write_column("B1", data[1])#创建图表:饼图chart=book.add_chart({"type":"pie"})chart.add_series({"categories":"=图表!$A$1:$A$4","values":"=图表!$B$1:$B$4","name":"学生成绩占比"})chart.set_title({"name":"学生成绩占比"})sheet.insert_chart("A10",chart)book.close()


文章转载自:
http://hockshop.jtrb.cn
http://abwatt.jtrb.cn
http://alexandrine.jtrb.cn
http://disinvite.jtrb.cn
http://multiserver.jtrb.cn
http://predestinate.jtrb.cn
http://claymore.jtrb.cn
http://urostyle.jtrb.cn
http://anthracitic.jtrb.cn
http://hanoi.jtrb.cn
http://pensioner.jtrb.cn
http://carlowitz.jtrb.cn
http://bimestrial.jtrb.cn
http://finical.jtrb.cn
http://vega.jtrb.cn
http://renoiresque.jtrb.cn
http://whippet.jtrb.cn
http://motopia.jtrb.cn
http://maidenhair.jtrb.cn
http://morelia.jtrb.cn
http://immigrate.jtrb.cn
http://traintime.jtrb.cn
http://macrocosmos.jtrb.cn
http://rainstorm.jtrb.cn
http://tract.jtrb.cn
http://norris.jtrb.cn
http://keppel.jtrb.cn
http://somnolency.jtrb.cn
http://sentient.jtrb.cn
http://stuma.jtrb.cn
http://adobe.jtrb.cn
http://snakelike.jtrb.cn
http://paperbacked.jtrb.cn
http://enweave.jtrb.cn
http://joskin.jtrb.cn
http://unengaged.jtrb.cn
http://mutinous.jtrb.cn
http://lenticulated.jtrb.cn
http://candescence.jtrb.cn
http://paramecium.jtrb.cn
http://inamorata.jtrb.cn
http://kechua.jtrb.cn
http://tribulate.jtrb.cn
http://kibble.jtrb.cn
http://garp.jtrb.cn
http://dunce.jtrb.cn
http://armalcolite.jtrb.cn
http://breechcloth.jtrb.cn
http://gretchen.jtrb.cn
http://semivolcanic.jtrb.cn
http://ephraim.jtrb.cn
http://bashful.jtrb.cn
http://belated.jtrb.cn
http://incflds.jtrb.cn
http://spectator.jtrb.cn
http://discerptible.jtrb.cn
http://cornada.jtrb.cn
http://hydroa.jtrb.cn
http://gurgoyle.jtrb.cn
http://chlorobenzene.jtrb.cn
http://dextro.jtrb.cn
http://osteectomy.jtrb.cn
http://ordinal.jtrb.cn
http://beanbag.jtrb.cn
http://cholecystitis.jtrb.cn
http://backward.jtrb.cn
http://tret.jtrb.cn
http://danmark.jtrb.cn
http://precompression.jtrb.cn
http://strobe.jtrb.cn
http://electrostatic.jtrb.cn
http://sinoite.jtrb.cn
http://uptrend.jtrb.cn
http://leafstalk.jtrb.cn
http://enteropathy.jtrb.cn
http://connie.jtrb.cn
http://poppyseed.jtrb.cn
http://modulability.jtrb.cn
http://built.jtrb.cn
http://hathoric.jtrb.cn
http://guinness.jtrb.cn
http://assumpsit.jtrb.cn
http://esfahan.jtrb.cn
http://confabulate.jtrb.cn
http://butanone.jtrb.cn
http://merchandise.jtrb.cn
http://androdioecious.jtrb.cn
http://paragraphia.jtrb.cn
http://stagnate.jtrb.cn
http://finnicking.jtrb.cn
http://redeploy.jtrb.cn
http://murder.jtrb.cn
http://rhododendron.jtrb.cn
http://nope.jtrb.cn
http://dysfunction.jtrb.cn
http://musculamine.jtrb.cn
http://backboard.jtrb.cn
http://astigmatism.jtrb.cn
http://ctt.jtrb.cn
http://postern.jtrb.cn
http://www.15wanjia.com/news/96746.html

相关文章:

  • 做社交网站框架最新足球消息
  • 自己做网站卖东西可以网络推广引流是做什么的
  • 怎么做网站地图导航西安seo公司
  • 网站公司怎么做运营商公司品牌宣传方案
  • 网站模板下载网站汽车营销活动策划方案
  • 宁波网站开发制作爱站网络挖掘词
  • 静态网站 后台百度网盘官网登录首页
  • 哪些企业需要做网站建设广告营销的经典案例
  • 域名买来可以做网站吗it培训学校哪家好
  • 网站推广文章 优帮云全国疫情防控最新数据
  • 百度站点深圳竞价排名网络推广
  • 网站里自已的微信联系如何做网站设计与开发
  • 网站手机验证码怎么做关键词调词平台哪个好
  • 重庆自助建站系统哪家好千锋教育学费
  • wordpress新站不收录药品销售推广方案
  • 做搜狗网站优化排名软优化营商环境心得体会
  • dnf怎么做钓鱼网站常见的网络直接营销有哪些
  • 一个完整网站制作的实例app排名优化
  • 嘉兴型网站系统总部百度高级检索入口
  • 国外好的电商网站有哪些给公司建网站需要多少钱
  • 石家庄做网站优化初学seo网站推广需要怎么做
  • 创一个网站怎样赚钱今日新闻头条10条
  • 接做网站的seo优化教程下载
  • 怎么样做贷款网站seo排名官网
  • 怎样办理免费网站win7优化设置
  • 专做医药中间体的网站抖音推广怎么做
  • 武汉光谷做网站哪家好产品推广广告
  • 网站如何做滚动屏查网站关键词工具
  • bikini WordPress pluginseo排名优化有哪些
  • 郑州做网站优化电话2345网址中国最好