16 Star 44 Fork 45

现任明教教主-乾颐堂 / qytang_Python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
2016.1.27 第一个用户交互表单 Python 373 Bytes
一键复制 编辑 原始数据 按行查看 历史
现任明教教主-乾颐堂 提交于 2016-01-27 10:45 . new file
#!/usr/bin/python3.4
import cgi
form = cgi.FieldStorage()
print("Content-type: text/html")
html = """
<TITLE>tutor3.py</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<H1>问候语</H1>
<HR>
<P>%s</P>
<HR>"""
if not "user" in form:
print(html % "你是谁?")
else:
print(html % ("你好, %s!." % form["user"].value))
Python
1
https://gitee.com/qytang/qytang_Python.git
git@gitee.com:qytang/qytang_Python.git
qytang
qytang_Python
qytang_Python
master

搜索帮助