Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Print PowerPoint slide notes
- from pptx import Presentation # python-pptx
- prs = Presentation('3.pptx')
- for slide in prs.slides:
- if slide.has_notes_slide:
- notes = slide.notes_slide
- print(notes.notes_text_frame.text)
- print('\n=====\n')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement