提问人:Sevencat 提问时间:9/14/2023 更新时间:9/14/2023 访问量:9
为什么当我在 cgi 中使用 print(type()) 时,它在我的网络中不返回任何内容?
Why when I use print(type()) in cgi, it returns nothing in my webages?
问:
#!/usr/bin/env python3
print('content-type: text/html\n')
print(type(True))
当我在终端中执行此代码时,它返回了
<class 'bool'>
但是当我在 cgi 中执行此代码时,它什么也没返回。.
答: 暂无答案
评论
print(type(True), file=sys.stdout)