열린 docx-file을 사용하는 것에 관한 작은 질문이 있습니다. 이 내 코드의 일부입니다python-docx에서 테이블 작업하기
doc = Document(self.fileName[0])
for paragraph in doc.paragraphs:
self.cursor.insertText(paragraph.text + '\n')
for table_index, table in enumerate(doc.tables):
self.cursor.insertText('Таблица {0}\n'.format(table_index+1))
for row_index in range(len(table.rows)):
for column_index in range(len(table.columns)):
self.cursor.insertText(table.cell(row_index, column_index).text + '\t')
self.cursor.insertText('\n')
self.cursor.insertText('\n')
테이블이 원래 문서에 physicaly 배치되어 내가 알 수있다 질문? 문과 같은 순서로 단락과 표를 표시해야합니다.
감사합니다. 링크 코드가 완벽하게 작동합니다. –