码迷,mamicode.com
首页 > 编程语言 > 详细

Python-一些实用的函数

时间:2017-04-02 00:02:33      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:return   tput   code   value   ges   values   lis   self   接受   

1.any()函数

  any(iterable)->bool

  当迭代器中有一个是Ture,则返回Ture;若interable=NUll,则返回False.

>>> any([1,0])
True
>>> any([0,0])
False
>>> any([])
False
>>> any([1,0,0])
True

应用:在一颗二叉树中,找出每一层中的最大元素(leetcode515)。

Input: 

          1
         /         3   2
       / \   \  
      5   3   9 

Output: [1, 3,9] 

#类节点的定义
class
node(self) : def __init__(self,data) self.val=data self.right=NULL self.left=NULL

class Solution(object): def largestValues(self, root): maxlist=[] row=[root] while any(row): maxlist.append(max[node.val for node in row]) row=[kid for node in row for kid in node.left,node.right) if kid] return maxlist

2.all()函数

 all(iterable)->bool

 迭代器中每个元素必须都为真时,返回Ture,否则返回False.

>>> all([1,0])
False
>>> all(["e",1])
True

3.map()--内置的高阶函数(可以接受函数名为参数的函数--高阶函数)

 

Python-一些实用的函数

标签:return   tput   code   value   ges   values   lis   self   接受   

原文地址:http://www.cnblogs.com/whb-20160329/p/6657828.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!