# For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Python-via-.NET doc = aw.Document(docs_base.my_dir + "Comments.docx") comment = doc.get_child(aw.NodeType.COMMENT, 0, True).as_comment() comment.remove_reply(comment.replies[0]) comment.add_reply("John Doe", "JD", datetime(2017, 9, 25, 12, 15, 0), "New reply") doc.save(docs_base.artifacts_dir + "WorkingWithComments.add_remove_comment_reply.docx")