Python方法完成转换英文字符操作,,本文是关于Python方
Python方法完成转换英文字符操作,,本文是关于Python方
本文是关于Python方法完成转换英文字符操作,用到了webapp2、string、cgi等python应用方法。
python代码示例写的略微复杂,有兴趣的初学者们可以参考下。
Python方法完成转换英文字符操作,源码如下:
import webapp2import stringimport cgiform = """<form method="post"> <b>Enter some text to ROT13:</b> <br><br> <textarea name="text" rows="5" cols="50">%(text)s</textarea> <br><br> <input type="submit"></form>"""def escape_html(s): return cgi.escape(s, quote = True)def translate(s): old = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" new = "nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM" return string.translate(s, string.maketrans(old, new))class Rot13(webapp2.RequestHandler): def write_form(self, text=""): self.response.out.write(form % {"text": text}) def get(self): self.write_form() def post(self): user_text = self.request.get("text") user_text = translate(str(user_text)) #print user_text user_text = escape_html(user_text) self.write_form(user_text) #print user_textapp = webapp2.WSGIApplication([('/rot13', Rot13)], debug=True)
Python语言方法,完成转换英文字符的操作示例。
application: udacity-cs253-zfzversion: 1runtime: python27api_version: 1threadsafe: truehandlers:- url: /.* script: rot13.app
编橙之家文章,
相关内容
- Python利用有道翻译开发API应用示例,pythonapi,本贴Pytho
- Python方法的xls与csv转换源码,pythonxlscsv源码,此贴pytho
- python链表应用源码示例,python源码示例,python链表应用源
- Python抓取分享页面的源代码示例,python抓取,本文章是关
- Python提取嵌套文件夹下指定文件操作源码,,如何在多重
- 5个常用的Python功能代码,python功能代码,今天编橙之家
- 用Python合并多个文件为一个文本文件的方法代码,pyt
- Python读取分割压缩TXT文本文件的方法,pythontxt,本文为大
- 用Python实现一个简单的线程池模型效果代码分析讲解,
- linux系统more基本命令python源码分享,linuxpython,此贴pyt
评论关闭