Ask Your Question
0

Very strange error with html in sagenotebook

asked 2013-06-29 07:04:00 +0200

AndreWin gravatar image

Hello!

I have function:

def my_table():
    s = """<table border=1>
    <tr><td>1</td><td>a</td><td>{0}</td></tr>
    <tr><td>2</td><td>b</td><td>{1}</td></tr>
    <tr><td>3</td><td>c</td><td>{2}</td></tr>
    <tr><td>4</td><td>d</td><td>{3}</td></tr>
    <tr><td>5</td><td>e</td><td>{4}</td></tr>
    <tr><td>6</td><td>f</td><td>{5}</td></tr>
    <tr><td>7</td><td>g</td><td>{6}</td></tr>""".format(0, 1, 2, 3, 4, 5, 6)
    html(s)

I create new worksheet in sage notebook, in 1st cell I paste this code. Then I press shift+enter. In 2nd cell I type:

my_table()

and also press shift+enter. Then I press "save and quit". After I closed this worksheet I open it and see that there are 2 tables and cells don't work correctly. When I try evaluate 2nd cell, the sage can't perform calculation.

What do I wrong? Please help me. Thanks.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2013-06-29 09:13:34 +0200

ndomes gravatar image

updated 2013-06-29 10:00:07 +0200

Missing

</table>

at the end of your html table ;-)

edit flag offensive delete link more

Comments

Ou! Sorry!) It's so! Fine! Thanks!)))

AndreWin gravatar imageAndreWin ( 2013-06-29 10:23:37 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2013-06-29 07:04:00 +0200

Seen: 227 times

Last updated: Jun 29 '13