本文主要是介绍python中几个内建函数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#-*- coding:utf-8 -*-
#python 中 all() 和any()的用法a = [1,2,3,4,False]
print(all(a))
print(any(a))#如果a中所有项为True, all(a) = True
#如果a中任意项为True, any(a) = Trueb = [1,2,3,4,5,6]sum(b)
print(b.count(3))
#b中 3 元素个数
print(b.index(3))
#b中 3 元素的下标
这篇关于python中几个内建函数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!