listing15-7.py
来自「《Beginning Python--From Novice to Profes」· Python 代码 · 共 24 行
PY
24 行
#!/usr/bin/env pythonimport cgiform = cgi.FieldStorage()name = form.getvalue('name', 'world')print """Content-type: text/html<html> <head> <title>Greeting Page</title> </head> <body> <h1>Hello, %s!</h1> <form action='simple3.cgi'> Change name <input type='text' name='name' /> <input type='submit' /> </form> </body></html>""" % name
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?