如何使用Python将粗体样式应用于Excel文件中的特定单词?
我正在使用 pyexcelerator Python 模块生成 Excel 文件。 我想将粗体样式应用于部分单元格文本,而不是整个单元格。 怎么做?
I am using pyexcelerator
Python module to generate Excel files.
I want to apply bold style to part of cell text, but not to the whole cell.
How to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在这里找到示例:生成 Excel 格式文件就在 Python 中
请注意,您创建了一个字体对象,然后将其赋予样式对象,然后在写入工作表时提供该样式对象:
Found example here: Generate an Excel Formatted File Right in Python
Notice that you make a font object and then give it to a style object, and then provide that style object when writing to the sheet:
这是 Excel 文档中的一个示例:
因此,您要操作的单元格的 Characters 属性就是您问题的答案。 它用作字符(开始、长度)。
PS:我从未使用过该模块,但我在 python 脚本中使用过 Excel COM 自动化。 可使用 win32com 来使用 Characters 属性。
This is an example from Excel documentation:
So the Characters property of the cell you want to manipulate is the answer to your question. It's used as Characters(start, length).
PS: I've never used the module in question, but I've used Excel COM automation in python scripts. The Characters property is available using win32com.
这是我用于解决同一问题的一种解决方案。
Here is one solution which i had used for the same problem.