Darren T

Results 1 comments of Darren T

In case anyone in future needs this, this seems to work for me. Reverses the strings while keeping formatting. ```python presentation = pptx.Presentation("test.pptx") for slide_count,slide in enumerate(presentation.slides): print("Slide: {}".format(slide_count)) for...