# Verwijder ODP-annotatie met behulp van Python

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

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



## Verwijder opmerkingen van ODP via Python

Om annotaties uit het ODP-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 ODP - Python

```python

import aspose.slides as slides

with slides.Presentation("example.odp") 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 ODP verwijderen via Python

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

Laad ODP met een exemplaar van de Presentation-klasse

Herhaal alle auteurs van geladen ODP

Verwijder alle opmerkingen van een auteur

Verwijder alle auteurs aan het einde

## Andere ondersteunde annotatieformaten
