Ashutosh Mahapatra
Results
22
comments of
Ashutosh Mahapatra
anybody found any solution to this?
here's a way to do this: ```py import pptx prs = pptx.Presentation("test2.pptx") for slide in prs.slides: for shape in slide.shapes: text_frame = slide.text_frame for paragraph in text_frame.paragraphs: for run in...