10 lines
348 B
Python
10 lines
348 B
Python
from pptx import Presentation
|
|
|
|
if __name__ == "__main__":
|
|
path1 = "../../任务数据/LibreOffice Impress/Change_Color_Slide_Number_gold_textbox.pptx"
|
|
presentation = Presentation(path1)
|
|
|
|
for i, sl in enumerate(presentation.slides):
|
|
for j, sh in enumerate(sl.shapes):
|
|
print(i, j, sh, sh.name, sh.shape_type, sh.text)
|