Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2292308
  • 博文数量: 321
  • 博客积分: 3440
  • 博客等级: 中校
  • 技术积分: 2992
  • 用 户 组: 普通用户
  • 注册时间: 2007-05-24 09:08
个人简介

我就在这里

文章分类

全部博文(321)

文章存档

2015年(9)

2014年(84)

2013年(101)

2012年(25)

2011年(29)

2010年(21)

2009年(6)

2008年(23)

2007年(23)

分类: Python/Ruby

2007-12-27 14:36:42

以前从不知道的map函数,看来很方便呢

>>> a = ''
>>> v = map( int, a.split( '.' ) )
>>> v
[192, 168, 0, 1]
>>> a.split( '.' )
['192', '168', '0', '1']
>>> print map.__doc__
map(function, sequence[, sequence, ...]) -> list

Return a list of the results of applying the function to the items of
the argument sequence(s).  If more than one sequence is given, the
function is called with an argument list consisting of the corresponding
item of each sequence, substituting None for missing values when not all
sequences have the same length.  If the function is None, return a list of
the items of the sequence (or a list of tuples if more than one sequence).
>>>
阅读(1905) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~