MCPcopy Create free account
hub / github.com/Akascape/CTkTable / get_column

Method get_column

CTkTable/ctktable.py:461–466  ·  view source on GitHub ↗

get values of one column

(self, column)

Source from the content-addressed store, hash-verified

459 return self.values[row]
460
461 def get_column(self, column):
462 """ get values of one column """
463 column_list = []
464 for i in self.values:
465 column_list.append(i[column])
466 return column_list
467
468 def select_row(self, row):
469 """ select an entire row """

Callers 2

select_columnMethod · 0.95
get_selected_columnMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected