Krossfire9
Results
2
comments of
Krossfire9
(I'm newish to coding) I can't seem to get this function to actually delete anything. I nested it inside a for loop like so: for n in range(5,1,-1): delete_slide(prs,prs.slides[n]) where...
@EBjerrum Thanks for responding! I made a couple rookie mistakes (saved the doc before deleting slides) but the eventual code that worked was: ``` for i in range(0,6,1): delete_slides(prs, 0)...