how to write a html to automatically display the dictionary?

Joel Goldstick joel.goldstick at gmail.com
Tue Sep 23 10:44:54 EDT 2014


On Tue, Sep 23, 2014 at 10:18 AM, luofeiyu <elearn2014 at gmail.com> wrote:
> x={'f1':1,'f2':2,'f3':3}
> how can i create the following html file automatically with python to
> display x ?
>
Generally, you would use a framework like django or others, but you
can make your html a string and use format:
html = "<table><tr><td>%d</td>... " % x['f1']

> <table border=1>
> <tr>
> <td>
> f1
> </td>
> <td>
> f2
> </td>
> <td>
> f3
> </td>
> </tr>
> <td>
> 1
> </td>
> <td>
> 2
> </td>
> <td>
> 3
> </td>
> <tr>
> </tr>
> </table>
> --
> https://mail.python.org/mailman/listinfo/python-list



-- 
Joel Goldstick
http://joelgoldstick.com



More information about the Python-list mailing list