为了账号安全,请及时绑定邮箱和手机立即绑定

如何把python打印出来的结果存为html?(Sublime Text2)

就是这一课讲的 ,他说最后打印出来存为html就可以看到表格啦,可是不会把打印出来的结果存为html

调出控制台来输 python complex.py>complex.html也不对。。。代码各位看官如果嫌长可以不太仔细看啦

d = { 'Adam': 95, 'Lisa': 85, 'Bart': 59 }

def generate_tr(name, score):

    if score<60:

        return '<tr><td>%s</td><td style="color:red">%s</td></tr>' % (name, score)     

    else:

        return '<tr><td>%s</td><td>%s</td></tr>' % (name, score)

tds = ['<tr><td>%s</td><td>%s</td></tr>'%(name,score) for name, score in d.iteritems()]

print '<table border="1">'

print '<tr><th>Name</th><th>Score</th><tr>'

print '\n'.join(tds)

print '</table>'


正在回答

4 回答

把代码运行结果

2 回复 有任何疑惑可以回复我~
#1

慕用6767730 提问者

非常感谢!
2015-09-05 回复 有任何疑惑可以回复我~
def write_to_file(content):
    with open('table.html', 'a', encoding='utf-8') as f:
            f.write(content + '\n')
write_to_file('<table border="1">')
write_to_file('<tr><th>Name</th><th>Score</th><tr>')
write_to_file('\n'.join(tds))
write_to_file('</table>')

可以把‘print’那段改成这个,在IDE上运行一次,就会生成一个html文件,打开即可。

0 回复 有任何疑惑可以回复我~

把运行结果复制到notepad++里面,即可设置成你想要的语言,然后保存运行,就OK啦

0 回复 有任何疑惑可以回复我~

你把这代码复制下来,粘贴到记事本,保存为后缀名.html不就好了

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
初识Python
  • 参与学习       758626    人
  • 解答问题       8667    个

学python入门视频教程,让你快速入门并能编写简单的Python程序

进入课程

如何把python打印出来的结果存为html?(Sublime Text2)

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信