listing25-1.py

来自「《Beginning Python--From Novice to Profes」· Python 代码 · 共 25 行

PY
25
字号
#!/usr/bin/env pythonimport cgiform = cgi.FieldStorage()text = form.getvalue('text', open('simple_edit.dat').read())f = open('simple_edit.dat', 'w')f.write(text)f.close()print """Content-type: text/html<html>  <head>    <title>A Simple Editor</title>  </head>  <body>    <form action='simple_edit.cgi' method='POST'>    <textarea rows='10' cols='20' name='text'>%s</textarea><br />    <input type='submit' />    </form>  </body></html>""" % text

⌨️ 快捷键说明

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