# Python을 사용하여 ODP 주석 제거

> ODP 프레젠테이션 주석을 제거하는 Python 소스 코드

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



## Python을 통해 ODP에서 주석 제거

ODP 파일에서 주석을 제거하기 위해 기능이 풍부한 [Aspose.Slides for Python via .NET](https://products.aspose.com/slides/ko/python-net/) API를 사용합니다. 강력하고 사용하기 쉬운 Python 플랫폼용 문서 조작 API.

### 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)
```

## Python을 통해 ODP에서 주석을 제거하는 방법

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

프레젠테이션 클래스의 인스턴스로 ODP 로드

로드된 ODP의 모든 작성자에 대해 반복

작성자의 모든 주석 제거

마지막에 모든 작성자 제거

## 기타 지원되는 주석 형식
