Is there a way to display two html tables (of different sizes) side by side?
Here is a simple, silly example. Can I display the arrays below in side by side tables?
a=[[i,i^2] for i in range(0,10)]
b=[[i,i^3] for i in range(0,15)]
html.table(a)
html.table(b)