MCPcopy Create free account
hub / github.com/dabeaz-course/practical-python / row

Method row

Solutions/7_4/tableformat.py:26–29  ·  view source on GitHub ↗
(self, rowdata)

Source from the content-addressed store, hash-verified

24 print(('-'*10 + ' ')*len(headers))
25
26 def row(self, rowdata):
27 for d in rowdata:
28 print(f'{d:>10s}', end=' ')
29 print()
30
31class CSVTableFormatter(TableFormatter):
32 '''

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected