python2.4的openpyxl库对excel格式的处理 10
在linux系统python2.4用openpyxl对excel修改其中的数据,但是遇到个问题,原来的excel中的比如说单元格颜色一些单元格合并在修改后的excel中都...
在linux系统python2.4用openpyxl对excel修改其中的数据,但是遇到个问题,原来的excel中的比如说单元格颜色 一些单元格合并在修改后的excel中都丢失了,请问openpyxl怎样能将excel里的格式同步复制到修改后的Excel中 openpyxl是1.1.5
展开
2个回答
展开全部
貌似 xlrd库也是存在这个问题 只有自己给它涂色了
http://nullege.com/codes/search/openpyxl.style.Color
example:
import openpyxl
from openpyxl.style import Color, Fill
from openpyxl.cell import get_column_letter
..
cell = sheet.cell(column=pt[0], row=pt[1])
cell.style.fill.fill_type = Fill.FILL_SOLID
cell.style.fill.start_color = Color(color)
cell.style.fill.end_color = Color(color)
http://nullege.com/codes/search/openpyxl.style.Color
example:
import openpyxl
from openpyxl.style import Color, Fill
from openpyxl.cell import get_column_letter
..
cell = sheet.cell(column=pt[0], row=pt[1])
cell.style.fill.fill_type = Fill.FILL_SOLID
cell.style.fill.start_color = Color(color)
cell.style.fill.end_color = Color(color)
追问
没有把整个格式都转移的方法吗 如果要自己写好烦啊 还要设定单元格合并 字体 宽和高 颜色
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
from openpyxl import workbook
注意大小写,不是Workbook,好像老版本2.4的openpyxl和新的不一样。
http://stackoverflow.com/questions/9629532/cannot-import-workbook-in-openpyxl
注意大小写,不是Workbook,好像老版本2.4的openpyxl和新的不一样。
http://stackoverflow.com/questions/9629532/cannot-import-workbook-in-openpyxl
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询