map的使用(自增)ret = map(lambda x : x+100 if x % 2 == 1 else x - 100, [1,2,3,4,5])

1 #!/usr/bin/env python
2 ret = map(lambda x : x+100 if x % 2 == 1 else x - 100, [1,2,3,4,5])
3 print(ret)
4 for i in ret :
5     print(i)

 

posted @ 2016-12-23 17:46  失落的黎明  阅读(1766)  评论(0编辑  收藏  举报