Chinaunix首页 | 论坛 | 博客
  • 博客访问: 218836
  • 博文数量: 39
  • 博客积分: 945
  • 博客等级: 准尉
  • 技术积分: 532
  • 用 户 组: 普通用户
  • 注册时间: 2012-05-04 17:25
文章分类

全部博文(39)

文章存档

2012年(39)

我的朋友

分类: Python/Ruby

2012-05-25 15:26:44

 源自python cookbook.

   给一个字典d 当k是字典的键时,你可以执行使用d[k]  如果k不是d的键时, 则这个操作给字典增加一个新条目

点击(此处)折叠或打开

  1. #!/usr/bin/python

  2. def addword(theIndex, word, pagenumber):
  3.     if word in theIndex:
  4.        theIndex[word].append(pagenumber)
  5.     else:
  6.        theIndex[word] = [pagenumber]

  7. #
  8. def addword(theIndex, word, pagenumber):
  9.     theIndex.setdefalut(word, []).append(pagenumber)


阅读(3154) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~