Skip to content

Instantly share code, notes, and snippets.

@Gwith
Created October 16, 2017 20:25
Show Gist options
  • Save Gwith/7941a7005ed6fe002c45bca6282ce5a2 to your computer and use it in GitHub Desktop.
Save Gwith/7941a7005ed6fe002c45bca6282ce5a2 to your computer and use it in GitHub Desktop.
def test(self):
for row in range(self.orders_table.rowCount()):
for col in range(self.orders_table.columnCount()):
value = self.orders_table.item(row, col)
value = str(value.text())
self.orders_table_list.append(value)
print(self.orders_table_list)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment