会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
jetlyb
博客园
首页
新随笔
联系
管理
订阅
2017年5月12日
python装饰器
摘要: python 装饰器
阅读全文
posted @ 2017-05-12 16:27 jetlyb
阅读(182)
评论(0)
推荐(0)
编辑
2016年4月12日
centos+git+gitolite 安装和部署
摘要: 一.部署环境 系统:CentOS 6.4x64 最小化安装 IP:192.168.52.131 git默认使用SSH协议,在服务器上基本上不用怎么配置就能直接使用。但是如果面向团队服务,需要控制权限的话,还是用gitolite方便些。 首先用x-shell 工具链接centos 系统 二.安装基础依
阅读全文
posted @ 2016-04-12 16:08 jetlyb
阅读(9189)
评论(2)
推荐(0)
编辑
2016年3月19日
__getattr__和__setattt__使用
摘要: 结果:
阅读全文
posted @ 2016-03-19 19:39 jetlyb
阅读(275)
评论(0)
推荐(0)
编辑
@property使用
摘要: # coding:utf-8 """ property:负责把方法变成属性 """ class Student(object): def get_score(self): return self._score def set_score(self, score): if not isinstance(score, int): ...
阅读全文
posted @ 2016-03-19 19:37 jetlyb
阅读(196)
评论(0)
推荐(0)
编辑
迭代函数:zip、enumerate,list解析
摘要: 结果:
阅读全文
posted @ 2016-03-19 13:19 jetlyb
阅读(1011)
评论(0)
推荐(0)
编辑
lambda、map、reduce、filter函数讲解
摘要: 执行的结果是:
阅读全文
posted @ 2016-03-19 12:02 jetlyb
阅读(710)
评论(0)
推荐(0)
编辑
2016年3月6日
python 数字
摘要: python数字: 本文主要讲解常用的数字类型转换, 数字函数和随机数字函数。 1 # coding:utf-8 2 3 # python数字类型转换 4 def data_conversion(): 5 """ 6 int(x [,base ]) 将x转换为一个整数 7 long(x [,base
阅读全文
posted @ 2016-03-06 10:05 jetlyb
阅读(252)
评论(0)
推荐(0)
编辑
公告