1 | initial version |
You can insert html commands to wrap the two tables into a larger table. Something like:
a=[[i,i^2] for i in range(0,10)]
b=[[i,i^3] for i in range(0,15)]
html('<table><tr><td>')
html.table(a)
html('</td><td>')
html.table(b)
html('</td></tr></table>')
You can change the table (and row and column) style to your liking by modifying the html
commands that wrap the html.table
calls.