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

Method row

Solutions/5_8/tableformat.py:51–55  ·  view source on GitHub ↗
(self, rowdata)

Source from the content-addressed store, hash-verified

49 print('</tr>')
50
51 def row(self, rowdata):
52 print('<tr>', end='')
53 for d in rowdata:
54 print(f'<td>{d}</td>', end='')
55 print('</tr>')
56
57class FormatError(Exception):
58 pass

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected