We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
When slice of rows is gotten, the result object is not iterable.
import docx d = docx.Document() d.add_table(5,5) rs = d.tables[0].rows[1:3] for row in rs: print(row)
----> 1 for row in rs: 2 print(row) 3 TypeError: '_Row' object is not iterable