Python入门

Posted 取什么昵称呢

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python入门相关的知识,希望对你有一定的参考价值。

定义Template

1.在APP根目录下创建Templates目录

 

2.在该目录下创建Html文件

3.在views.py中返回render

from django.shortcuts import render
from django.http import HttpResponse

def index(request):
    return render(request,\'index.html\')
View Code

 

以上是关于Python入门的主要内容,如果未能解决你的问题,请参考以下文章