#!/usr/bin/python
#coding=utf-8'''Created on 2017年11月2日 from home@author: James zhan
'''print reduce(lambda x,y:x+y,range(5))
'''
reduce函数运行操作步骤((((0+1)+2)+3)+4)'''本文共 227 字,大约阅读时间需要 1 分钟。
#!/usr/bin/python
#coding=utf-8'''Created on 2017年11月2日 from home@author: James zhan
'''print reduce(lambda x,y:x+y,range(5))
'''
reduce函数运行操作步骤((((0+1)+2)+3)+4)'''转载于:https://www.cnblogs.com/jamespython/p/7881395.html