
python
xjandym
这个作者很懒,什么都没留下…
展开
-
python 静态方法
staticmethod 或 classmethod 一 class C_use_staticmethod1: def sm(in_str): print in_str sm = staticmethod( sm ) C_use_staticmethod1.sm("静态方法1") 二 class C_use_st...原创 2009-08-17 14:23:53 · 149 阅读 · 0 评论 -
pytho生成GUID UUID
import uuid uuid1 = uuid.uuid1() uuid3 = uuid.uuid3(uuid.NAMESPACE_DNS, 'test_str') uuid4 = uuid.uuid4() uuid5 = uuid.uuid5(uuid.NAMESPACE_DNS,'test_str') uuid.uuid1() ...原创 2009-08-17 17:46:09 · 168 阅读 · 0 评论 -
python json
py2.5 可使用 simplejson http://simplejson.googlecode.com/svn/tags/simplejson-2.0.9/docs/index.html Encoding - dumps() 方法 Decoding - loads() 方法 GAE例程 blitz, geochat, muvmuv 均有使用 simplejson...原创 2009-08-18 05:05:04 · 94 阅读 · 0 评论