我使用函数 display(HTML(html-string))在我的笔记本中显示HTML格式的表。但是,尝试一些css来改变表背景颜色并没有得到尊重。以下是我的代码片段:
rownum = 1
# make this table yellow
source = '<table bgcolor="yellow"><tr><th>Number</th><th>Instance Type</th><th>Total Cost</th>' \
'<th>Number of Instances</th></tr>'
for k in keys:
source += "<tr><td>%d</td><td>%s</td><td>$%0.2f</td><td>%d</td></tr>" % \
(rownum,resultsTable2[k]["itype"],k,resultsTable2[k]["num"])
rownum += 1
source += '</table>'
display(HTML(source))
版本详情
笔记本服务器的版本是4.4.1并且正在运行: Python 2.7.12(默认,2016年9月28日,18:41:32) [GCC 4.2.1兼容的Apple LLVM 8.0.0(clang-800.0.38)]
OS X Sierra上的Firefox 53.0.3。