2017年3月19日
摘要: #coding:utf-8'''简单装饰器''' def login(func): def fn(*arg): print 'passed user verification ' return login(*arg) return fn def tv(name): print 'welcome %s 阅读全文
posted @ 2017-03-19 16:59 零度0 阅读(79) 评论(0) 推荐(0)
  2017年3月18日
摘要: #coding;utf-8'''给一段字符串加密并解密'''import base64 s = raw_input()s1 = base64.encodestring(s)s2 = base64.decodestring(s1) print s1,s2 阅读全文
posted @ 2017-03-18 11:21 零度0 阅读(82) 评论(0) 推荐(0)
  2016年11月15日
摘要: http://www.testpub.cn/blog/ http://www.cnblogs.com/fnng/p/4560298.html http://www.androiddevtools.cn/ 阅读全文
posted @ 2016-11-15 12:48 零度0 阅读(107) 评论(0) 推荐(0)