为什么当我在 cgi 中使用 print(type()) 时,它在我的网络中不返回任何内容?

Why when I use print(type()) in cgi, it returns nothing in my webages?

提问人:Sevencat 提问时间:9/14/2023 更新时间:9/14/2023 访问量:9

问:

#!/usr/bin/env python3
print('content-type: text/html\n')

print(type(True))

当我在终端中执行此代码时,它返回了

<class 'bool'>

但是当我在 cgi 中执行此代码时,它什么也没返回。.

python-3.x 图形处理器

评论

0赞 JonSG 9/14/2023
你如何重定向你的“输出”?也许可以尝试一下print(type(True), file=sys.stdout)

答: 暂无答案