上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页
摘要: File "/data/msalt/module/default/game/common_tools.py", line 92, in reload_config stderr=PIPE, env={"PATH": '', "HOME": "/root"}) File "/usr/loc... 阅读全文
posted @ 2014-07-21 19:28 Xjng 阅读(1626) 评论(0) 推荐(0) 编辑
摘要: shell的输出可以分为标准输出和错误输出,2>&1中,2代表错误输出,1代表标准输出,&符号代表后面跟的是代号而不是文件。test.shecho '我是标准输出'ls /tmp/b.py假设不存在/tmp/b.py这个文件这里会输出:我是标准输出ls: cannot access /tmp/b.p... 阅读全文
posted @ 2014-07-21 10:32 Xjng 阅读(943) 评论(0) 推荐(0) 编辑
摘要: 1. 访问对象的属性class MyClass(): a='1' b='2' def __init__(self): pass def write(self): print self.a,self.bmyClass=MyClass()print d... 阅读全文
posted @ 2014-07-16 11:11 Xjng 阅读(774) 评论(1) 推荐(0) 编辑
摘要: 1.制作setup.pyfrom distutils.core import setupsetup(name='Myblog', version='1.0', description='My Blog Distribution Utilities', author='l... 阅读全文
posted @ 2014-07-16 10:53 Xjng 阅读(3359) 评论(0) 推荐(0) 编辑
摘要: 1.工厂模式#encoding=utf-8__author__ = 'kevinlu1010@qq.com'class ADD(): def getResult(self,*args): return args[0]+args[1]class SUB(): def getR... 阅读全文
posted @ 2014-07-10 11:56 Xjng 阅读(921) 评论(0) 推荐(0) 编辑
摘要: 1.传值和传址传值就是传入一个参数的值,传址就是传入一个参数的地址,也就是内存的地址(相当于指针)。他们的区别是如果函数里面对传入的参数重新赋值,函数外的全局变量是否相应改变,用传值传入的参数是不会改变的,用传址传入就会。a=1def f(b): b=2f(a)print a例如这段代码里面,... 阅读全文
posted @ 2014-07-07 11:50 Xjng 阅读(10738) 评论(0) 推荐(3) 编辑
摘要: functool.partail 方法可以为一个函数生成偏函数import functoolsdef f(a,b,c,d): print a,b,c,da='a'b='b'f1=functools.partial(f,a,b)f1('a','d')这里函数f有a,b,c,d四个变量,通过fun... 阅读全文
posted @ 2014-07-05 13:01 Xjng 阅读(1167) 评论(0) 推荐(0) 编辑
摘要: 1.生成器>>> def func1():... yield 0... yield 1... >>> a=func1()>>> a.next()0>>> a.next()1>>> a.next()Traceback (most recent call last): File "",... 阅读全文
posted @ 2014-07-04 17:47 Xjng 阅读(688) 评论(0) 推荐(0) 编辑
摘要: int_ip = lambda x: '.'.join([str(x/(256**i)%256) for i in range(3,-1,-1)])ip_int = lambda x:sum([256**j*int(i) for j,i in enumerate(x.split('.')[::-1]... 阅读全文
posted @ 2014-07-04 16:48 Xjng 阅读(1692) 评论(0) 推荐(0) 编辑
摘要: 这个工具类十分简单和简洁。sql拼接方法# encoding=utf-8from django.http import HttpResponsefrom anyjson import serializefrom django.http import HttpResponsefrom anyjson ... 阅读全文
posted @ 2014-07-03 10:31 Xjng 阅读(27390) 评论(4) 推荐(5) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页