会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
零度0
博客园
首页
新随笔
联系
订阅
管理
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)