如何把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>'