# إزالة تعليق PPT التوضيحي باستخدام Python

> كود مصدر Python لإزالة تعليقات عرض PPT

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



## إزالة التعليقات من PPT عبر Python

لإزالة التعليقات التوضيحية من ملف PPT ، سنستخدم [Aspose.Slides for Python عبر .NET](https://products.aspose.com/slides/ar/python-net/) واجهة برمجة تطبيقات غنية بالميزات ، واجهة برمجة تطبيقات معالجة المستندات قوية وسهلة الاستخدام لمنصة Python.

### حذف التعليقات التوضيحية من 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)
```

## كيفية إزالة التعليقات من PPT عبر Python

ثبّت ** Aspose.Slides for Python عبر .NET **. راجع [** التثبيت **](https://docs.aspose.com/slides/python-net/installation/).

قم بتحميل PPT بمثيل لفئة العرض التقديمي

كرر على جميع مؤلفي تحميل PPT

إزالة جميع تعليقات المؤلف

إزالة جميع المؤلفين في النهاية

## تنسيقات التعليقات التوضيحية الأخرى المعتمدة
