尽管笔记本已连接到Internet,但HTML代码仍出现错误

时间:2020-04-24 12:03:29

标签: html python-3.x jupyter-notebook

我在资源管理器中运行Jupiter Notebook。 互联网已开启。 我已经为笔记本安装并导入了以下软件包:

from __future__ import print_function
import pandas as pd
import numpy as np
import argparse
from jinja2 import Environment, FileSystemLoader
from weasyprint import HTML

使用DF进行操作后,我正在尝试在笔记本中创建HTMP模板:

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>{{ title }}</title>
</head>
<body>
    <h2>Sales Funnel Report - National</h2>
     {{ national_pivot_table }}
</body>
</html>

这将返回错误:

File "<ipython-input-11-7fe4f13eb678>", line 1
    <!DOCTYPE html>
    ^
SyntaxError: invalid syntax

请帮助

1 个答案:

答案 0 :(得分:0)

正确的是,即使有了这些包模板,模板也必须只是一个单独的HTML文件。