使用 Python 在 PowerPoint 演示文稿中创建或提取表格
itomcoil 2025-05-30 15:12 4 浏览
PowerPoint 中的表格是一种以结构化格式组织和呈现数据的方法,类似于 Excel 或 Word 等其他应用程序中表格的使用方式。它们提供了一种清晰简洁的方式来显示信息,使您的受众更容易消化和理解内容。
用于在 PowerPoint 演示文稿中创建或提取表格的 Python 库
要使用 Python 在 PowerPoint 演示文稿中创建或提取表格,我们可以使用 Spire.Presentation for Python 库。
Spire.Presentation for Python 是一个功能丰富且用户友好的库,支持在 Python 应用程序中创建、读取、编辑和转换 PowerPoint 演示文稿。使用此库,您可以对 PowerPoint 演示文稿执行各种操作,包括添加文本或图像、插入形状、创建表格和图表、添加或删除幻灯片、隐藏或显示幻灯片、合并或拆分演示文稿、加密或解密演示文稿、添加水印、插入视频和音频、添加评论等等。此外,您还可以将 PowerPoint 演示文稿转换为各种文件格式,例如 PDF、图像、HTML、SVG、ODP、OFD 和 XPS。
您可以使用以下 pip 命令从 PyPI 安装适用于 Python 的 Spire.Presentation:
pip install Spire.Presentation
有关安装的更多详细信息,您可以查看此官方文档:如何在 VS Code 中为 Python 安装 Spire.Presentation。
使用 Python 在 PowerPoint 演示文稿中创建表格
可以使用 ISlide.Shapes.AppendTable() 函数将表格添加到 PowerPoint 幻灯片中。添加表后,您可以使用 ITable[columnIndex, rowIndex] 用数据填充单元格。TextFrame.Text 属性。
下面是一个简单的示例,演示如何在 Python 中向 PowerPoint 幻灯片添加表格:
from spire.presentation.common import *
from spire.presentation import *
import math
# Create a new PowerPoint presentation
presentation = Presentation()
# If you want to load an existing presentation, add this line
# presentation.LoadFromFile("input_file_path")
# Get the first slide in the presentation
slide = presentation.Slides[0]
# Define the widths of columns in the table
column_widths = [110, 100, 150, 100]
# Define the heights of rows in the table
row_heights = [15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15]
# Calculate the total width of the table
total_width = sum(column_widths)
# Specify the x and y coordinates to add the table
x = math.trunc(presentation.SlideSize.Size.Width / float(2)) - (total_width / 2)
y = 100
# Add a table to the slide
table = slide.Shapes.AppendTable(x, y, column_widths, row_heights)
# Define the data for the table
table_data = [
["Employee", "Department", "Job Title", "Salary"],
["John Doe", "Sales", "Sales Manager", "$85,000"],
["Jane Smith", "Marketing", "Marketing Coordinator", "$52,000"],
["Bob Johnson", "IT", "Software Engineer", "$95,000"],
["Emily Davis", "HR", "HR Specialist", "$62,000"],
["Michael Wilson", "Finance", "Financial Analyst", "$78,000"],
["Sarah Lee", "Operations", "Operations Manager", "$90,000"],
["David Kim", "R&D", "Research Scientist", "$85,000"],
["Olivia Chen", "Marketing", "Marketing Specialist", "$58,000"],
["Tom Nguyen", "IT", "IT Support Technician", "$48,000"],
["Samantha Brown", "HR", "Recruitment Coordinator", "$55,000"]
]
# Populate the table with the data
for i, row in enumerate(table_data):
for j, cell_value in enumerate(row):
table[j, i].TextFrame.Text = cell_value
# Set the font and font size for the text in each cell
table[j,i].TextFrame.Paragraphs[0].TextRanges[0].LatinFont = TextFont("Arial")
table[j,i].TextFrame.Paragraphs[0].TextRanges[0].FontHeight = 12
# Center the text in each cell
table[j, i].TextFrame.Paragraphs[0].Alignment = TextAlignmentType.Center
# Apply a built-in table style to the table
table.StylePreset = TableStylePreset.LightStyle3Accent5
# Save the PowerPoint presentation to a file
presentation.SaveToFile("CreateTable.pptx", FileFormat.Pptx2010)
presentation.Dispose()
使用 Python 在 PowerPoint 幻灯片中插入表格
使用 Python 从 PowerPoint 演示文稿中提取表格
PowerPoint 幻灯片中的表格由 ITable 对象表示。因此,要提取表,您首先需要找到 ITable 类型的形状,然后遍历表中的单元格并使用 Cell.TextFrame.Text 属性获取单元格的数据。
下面是一个简单的示例,演示如何使用 Python 从 PowerPoint 演示文稿中提取表:
from spire.presentation.common import *
from spire.presentation import *
# Initialize an instance of the Presentation class
presentation = Presentation()
# Load a PowerPoint presentation containing tables
presentation.LoadFromFile("CreateTable.pptx")
# Create a list to store the extracted table data
table_data = []
# Traverse through the slides in the presentation
for slide in presentation.Slides:
# Traverse through the shapes on each slide
for shape in slide.Shapes:
# Check if the current shape is a table
if isinstance(shape, ITable):
table = shape
# Get the data of the cells in the table and append them to the list
table_data.extend([" | ".join(cell.TextFrame.Text.strip() for cell in row) for row in table.TableRows])
table_data.append("")
# Write the table data to a text file
with open("table.txt", "w", encoding="utf-8") as file:
file.write("\n".join(table_data))
presentation.Dispose()
- 上一篇:用python实现打印表格的方法
- 下一篇:用Python把表格做成web可视化图表
相关推荐
- Python字符串格式化:你真的会用吗?告别混乱代码,看这一篇就够
-
大家好!今天我们来聊聊Python中一个看似简单却暗藏玄机的操作——字符串格式化。你是不是还在用%s拼凑变量?或者写了无数个format()却依然被同事吐槽代码太“复古”?别急,这篇干货带你解锁三种神...
- Python Unicode字符串编程实用教程
-
Unicode是现代文本处理的基础,本教程将介绍Python中的Unicode字符串处理,涵盖从基础概念到高级应用等。一、Unicode基础概念1.1Unicode与编码核心概念:Unicode:字...
- 殊途同归 python 第 6 节:字符串的使用
-
字符串作为Python的基础数据之一,以下是字符串的几种最常用情形,直接上代码1.声明字符串a="helloworld"b='竹杖芒鞋轻胜马,谁怕,一蓑烟雨任平生...
- python爬虫字符串定位开始跟结束(find方法的使用)
-
python爬虫采集的时候会需要对采集的内容进行处理行为,处理什么?简单的说就是处理多余的HTML代码跟确定文章标题跟结尾,还有内容区间,方法如下:首先先是定位,我们先假设我们采集到了一批数据,数据里...
- python 入门到脱坑 基本数据类型—字符串string
-
以下是Python字符串(String)的入门详解,包含基础操作、常用方法和实用技巧,适合初学者快速掌握:一、字符串基础1.定义字符串#单引号/双引号s1='hello's...
- python字符串知识点总结
-
Python字符串知识点总结1.字符串基础字符串是不可变的序列类型可以用单引号(')、双引号(")或三引号('''或""")创建三引号...
- 在 Python 中使用 f-String 格式化字符串
-
在Python3.6中引入的f字符串提供了一种既简洁又可读的字符串格式新方法。f字符串的正式名称为格式化字符串文字,是以f或F为前缀的字符串,其中包含大括号内的表达式。这些表达式在...
- 零起点Python机器学习快速入门-4-3-字符串常用方法
-
Python中字符串的多种操作。包括去除字符串首尾的空格和特定字符、字符串的连接、查找字符在字符串中的位置、字符串之间的比较、计算字符串的长度、大小写转换以及字符串的分割。通过这些操作,我们可以对字...
- Python 中 字符串处理的高效方法,不允许你还不知道
-
以下是Python中字符串处理的高效方法,涵盖常用操作、性能优化技巧和实际应用场景,帮助您写出更简洁、更快速的代码:一、基础高效操作1.字符串拼接:优先用join()代替+原因:join()预...
- Python字符串详解与示例
-
艾瑞巴蒂字符串的干货来了,字符串是程序中最常见的数据类型之一,用来表示数据文本,下面就来介绍下字符串的特性,操作和方法,和一些示例来吧道友:1.字符串的创建在python中字符串可以永单引号(...
- Python中去除字符串末尾换行符的方法
-
技术背景在Python编程中,处理字符串时经常会遇到字符串末尾包含换行符的情况,如从文件中读取每一行内容时,换行符会作为字符串的一部分被读取进来。为了满足后续处理需求,需要将这些换行符去除。实现步骤1...
- 表格编程之争:Python VS VBA?Excel用户:新编程语言才真香!
-
Python和VBA哪个更好用?Python和VBA是两种不同的编程语言,它们都有自己的特点和优缺点。在表格编程方面,VBA在Excel中的应用非常广泛,可以通过宏来实现自动化操作和数据处理,也可以通...
- 用Python把表格做成web可视化图表
-
Python中有一个streamlit库,Streamlit的美妙之处在于您可以直接在Python中创建Web应用程序,而无需了解HTML、CSS或JavaScrip,今天我们就用st...
- 使用 Python 在 PowerPoint 演示文稿中创建或提取表格
-
PowerPoint中的表格是一种以结构化格式组织和呈现数据的方法,类似于Excel或Word等其他应用程序中表格的使用方式。它们提供了一种清晰简洁的方式来显示信息,使您的受众更容易消化和理...
- 用python实现打印表格的方法
-
最近在做表格输出的任务,一般有两种方法实现在控制台打印,一种是根据表格的输出规则自己写代码实现,另外一种是安装python的第三方依赖包prettytable实现这个效果。方法1:根据表格规则写代码...
- 一周热门
- 最近发表
- 标签列表
-
- ps图案在哪里 (33)
- super().__init__ (33)
- python 获取日期 (34)
- 0xa (36)
- super().__init__()详解 (33)
- python安装包在哪里找 (33)
- linux查看python版本信息 (35)
- python怎么改成中文 (35)
- php文件怎么在浏览器运行 (33)
- eval在python中的意思 (33)
- python安装opencv库 (35)
- python div (34)
- sticky css (33)
- python中random.randint()函数 (34)
- python去掉字符串中的指定字符 (33)
- python入门经典100题 (34)
- anaconda安装路径 (34)
- yield和return的区别 (33)
- 1到10的阶乘之和是多少 (35)
- python安装sklearn库 (33)
- dom和bom区别 (33)
- js 替换指定位置的字符 (33)
- python判断元素是否存在 (33)
- sorted key (33)
- shutil.copy() (33)