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

Method headings

Solutions/8_2/tableformat.py:35–36  ·  view source on GitHub ↗
(self, headers)

Source from the content-addressed store, hash-verified

33 Output data in CSV format.
34 '''
35 def headings(self, headers):
36 print(','.join(headers))
37
38 def row(self, rowdata):
39 print(','.join(rowdata))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected