PythonWeb编程web.pyOn this pageweb.py官网 https://webpy.org/安装 pip install web.py模型创建 templates 文件夹里面放入 .html 文件render = web.template.render('templates/')class index: def GET(self): return render.index()css,js和图片 要放进根目录的 static 文件夹。