1 | initial version |
There is a html.table()
command to which you can provide lists of lists and it will display them as a table. For example:
html.table([['header 1', 'header 2', 'header 3'], range(3), range(3, 6)])
If you do this on the command line, you will actually get the raw html output.