可以使用python库"python-pptx"来读取ppt的备注。首先需要安装该库,可以使用pip命令安装:pip install python-pptx。然后可以使用以下代码读取ppt的备注:
from pptx import Presentation
prs =Presentation("test.pptx")
for slide in prs.slides:
for shape in slide.shapes:
if shape.has_text_frame:
for note in shape.text_fra