# Verwijder PPT-annotatie met behulp van Python

> Python-broncode om opmerkingen over PPT-presentaties te verwijderen

Source: https://products.aspose.com/slides/nl/python-net/annotation/ppt/
Updated: 2023-04-18



## Verwijder opmerkingen van PPT via Python

Om annotaties uit het PPT-bestand te verwijderen, gebruiken we [Aspose.Slides voor Python via .NET](https://products.aspose.com/slides/nl/python-net/) API, een feature-rijke, krachtige en gebruiksvriendelijke API voor documentmanipulatie voor het Python-platform.

### Annotaties verwijderen uit PPT - Python

```python

import aspose.slides as slides

with slides.Presentation("example.ppt") as presentation:
    # Deletes all comments from the presentation
    for author in presentation.comment_authors:
        author.comments.clear()

    # Deletes all authors
    presentation.comment_authors.clear()

    presentation.save("example_out.pptx", slides.export.SaveFormat.PPTX)
```

## Opmerkingen van PPT verwijderen via Python

Install **Aspose.Slides for Python via .NET**. See [**Installation**](https://docs.aspose.com/slides/python-net/installation/).

Laad PPT met een exemplaar van de Presentation-klasse

Herhaal alle auteurs van geladen PPT

Verwijder alle opmerkingen van een auteur

Verwijder alle auteurs aan het einde

## Andere ondersteunde annotatieformaten
