MCPcopy
hub / github.com/nltk/nltk / append

Method append

nltk/draw/table.py:790–799  ·  view source on GitHub ↗

Add a new row to the end of the table. :param rowvalue: A tuple of cell values, one for each column in the new row.

(self, rowvalue)

Source from the content-addressed store, hash-verified

788 self._check_table_vs_mlb()
789
790 def append(self, rowvalue):
791 """
792 Add a new row to the end of the table.
793
794 :param rowvalue: A tuple of cell values, one for each column
795 in the new row.
796 """
797 self.insert(len(self._rows), rowvalue)
798 if self._DEBUG:
799 self._check_table_vs_mlb()
800
801 def clear(self):
802 """

Callers 15

extendMethod · 0.95
demoFunction · 0.95
print_deprecated_uses_inFunction · 0.45
__init__Method · 0.45
find_concordanceMethod · 0.45
generateMethod · 0.45
_reprMethod · 0.45
_strMethod · 0.45
_reprMethod · 0.45
add_conflictFunction · 0.45
_flattenFunction · 0.45

Calls 2

insertMethod · 0.95
_check_table_vs_mlbMethod · 0.95

Tested by

no test coverage detected