• 你能猜出这是什么代码


    from win32com.client import Dispatch        # 导入win32com模块的client包下的函数
    import os                        # 导入系统功能模块OS

    '''批量生成PowerPoint演示文稿中的幻灯片'''
    def PowerPoint():
        ppt = os.path.join(os.getcwd(), "titles.pptx")        # 片头模版文件
        App = Dispatch("PowerPoint.Application")            # 创建PowerPoint应用程序
        App.Visible = True                        # 显示PowerPoint窗口
        Presentation = App.Presentations.Open(ppt)            # 打开模版文件
        # 要显示的内容列表
        itemlist = [("《半壶纱》", "宋佳琦"), ("《洞庭新歌》", "Aurora"), ("《知否、知否》", "无语")]  
        itemlen = len(itemlist)                    # 节目的个数
        offset = 2            # 设置新添加幻灯片的起始页,值为:模版的片头幻灯片个数+1
            # 复制和曲目相同个数的幻灯片(由于要保留格式,所以此处只能通过合并PPT的方式实现)
        for n in range(offset, itemlen + offset):  
            # 将当前目录下的page.pptx中的幻灯片插入到当前PPT文件中
            Presentation.Slides.InsertFromFile(os.path.join(os.getcwd(), "page.pptx"), Presentation.Slides.Count, 1, 1)
        for i in range(offset, itemlen + offset):  # 循环修改每页幻灯片中的曲目名称和表演者
            item = itemlist[i - 2]
            # 修改第一个文本框的内容
            Presentation.Slides(i).Shapes(1).TextFrame.TextRange.Text = item[0]
            # 修改第二个文本框的内容
            Presentation.Slides(i).Shapes(2).TextFrame.TextRange.Text = "表演者:" + item[1]  
        outfile = os.path.join(os.getcwd(), "音乐会PPT.pptx")  # 目标文件
        Presentation.SaveAs(outfile)                    # 另存为新的PowerPoint演示文稿
        App.Quit()                            # 退出PowerPoint应用程序
        print("PPT文件已生成!文件位置为:",outfile)

    PowerPoint()  # 调用函数开始生成

  • 相关阅读:
    opencv_c++学习(二十六)
    背包问题学习笔记-01背包
    Android 10.0 展讯lowmemorykiller低内存保活白名单,避免app在低内存被杀进程
    MySQL常见锁探究
    indexof
    使用 qshell 定时备份数据库文件到七牛云并删除7天前的备份(windows版)
    autosar 诊断入门
    实际业务中使用策略模式对代码进行重构
    【CNN】白话迁移学习中域适应
    使用Python完成一套优美的中秋节代码
  • 原文地址:https://blog.csdn.net/s13596191285/article/details/125514304