黄聪

论SEO对人类的重要性,请看我的博客:hcsem.com

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
#!python
# encoding: utf-8
import collections
def default_factory():
    return 'default value'

d=collections.defaultdict(default_factory,foo='bar',ok='ok')

print 'd:',d
print 'foo=>',d['foo']
print 'ok=>',d['ok']
print 'bar=>',d['bar']

 

posted on 2012-12-13 00:37  黄聪  阅读(3282)  评论(0编辑  收藏  举报