在django 1.8上的python3.5中打印变量类型

Dea*_*ada 9 django python-3.5

我很难确定变量的类型,因为我在python2上使用并刚刚迁移到python3

from django.http import HttpResponse

def myview(request):
    x = "Name"
    print (x)
    print type(x)
    return HttpResponse("Example output")
Run Code Online (Sandbox Code Playgroud)

由于打印类型(x),此代码将引发错误.但是,如果您将该语法行更改为type(x).该类型不会在django的runserver上返回输出.

knb*_*nbk 25

print在Python 3中不再是一个语句,而是一个函数.您需要使用括号来调用它:

print(type(x))
Run Code Online (Sandbox Code Playgroud)