完整脚本:
import pprint
def application(environ, start_response):
start_response('200 OK', [('content-type', 'text/html')])
aaa = ['a','b','c']
pprint.pprint(aaa)
如果我要在终端中运行它,那将是......
>>> import pprint
>>> aaa = ['a','b','c']
>>> pprint.pprint(aaa)
['a', 'b', 'c']
>>>
如您所见,它工作正常。但是通过 wsgi-script 它不起作用。
错误日志:
TypeError:“NoneType”对象不可迭代
顺便说一句,“pprint”是 PHP 中的“print_r()”等价物吗?