Python脚本页面显示空白?

时间:2014-04-23 12:03:07

标签: python

我在Python中完全不知道。我不知道这个剧本。现在我只是在服务器中启动Python代码。

我正在获取代码的空白页

请检查下面的代码:

#!/usr/local/bin/python
print "Content-type: text/html"
print "Hello, Python!"

1 个答案:

答案 0 :(得分:2)

在HTTP标头需要为空行后,您可以使用HTML而不是纯文本。

#!/usr/local/bin/python
print "Content-type: text/html\n"
<html>
<body>
<p>Hello, Python!</p>
</body>
</html>