test1.py

来自「python web programming 部分」· Python 代码 · 共 16 行

PY
16
字号
#
# test1.py: simple CGI script
#
print """Content-type: text/html

<HTML>
<HEAD>
  <TITLE>My First CGI Script</TITLE>
</HEAD>
<BODY>
One and one and one and one and one is: %s
</BODY>
</HTML>
""" % (1+1+1+1+1)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?