我对python还是很陌生,我一直在使用pptx python进行项目。 一切都很好,但是我不知道如何选择将文件保存在哪个目录中。
这是我的代码:
from pptx import Presentation
prs = Presentation()
title_slide_layout = prs.slide_layouts[0]
slide = prs.slides.add_slide(title_slide_layout)
title = slide.shapes.title
subtitle = slide.placeholders[1]
title.text = "Hello, World!"
subtitle.text = "python-pptx was here!"
prs.save('test.pptx')
它将把文档保存在我的桌面上。如何选择目录?
提前谢谢! PS:我正在使用python 3.7
答案 0 :(得分:1)
让我猜猜-python脚本也在桌面上!
prs.save('test.pptx')
是相对路径。因此,test.pptx将与脚本存储在同一目录中。如果您想要其他位置,请使用绝对路径,例如prs.save('C:/Users/xyz/Desktop/data/test.pptx')
答案 1 :(得分:0)
def save(self, path_or_stream):
"""
Save this presentation package to *path_or_stream*, which can be
either a path to a filesystem location (a string) or a file-like
object. for example save(self, 'C:\mypath'):
"""
self.package.save(path_or_stream)