Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

var('x y z alpha') eqns = [x == y^2, z+alpha^3 == 0] table = [ (eq.lhs(),'=',eq.rhs()) for eq in eqns ] html.table(table)

var('x y z alpha')
eqns = [x == y^2, z+alpha^3 == 0]
table = [ (eq.lhs(),'=',eq.rhs()) for eq in eqns ]
html.table(table)

html.table(table)

You can use html.table placing left hand side, equal sign and right hand side in seperate columns.

var('x y z alpha')
eqns = [x == y^2, z+alpha^3 == 0]
table = [ (eq.lhs(),'=',eq.rhs()) for eq in eqns ]
html.table(table)

You can use html.table placing left hand side, equal sign and right hand side in seperate separate columns.

var('x y z alpha')
eqns = [x == y^2, z+alpha^3 == 0]
table = [ (eq.lhs(),'=',eq.rhs()) for eq in eqns ]
html.table(table)