我很难确定变量的类型,因为我在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)
| 归档时间: |
|
| 查看次数: |
28771 次 |
| 最近记录: |