Rumah > Artikel > pembangunan bahagian belakang > python中len是什么意思
python中len是什么意思?下面给大家具体介绍一下:
函数:len()
1、作用:
返回字符串、列表、字典、元组等长度
2、语法:
len(str)
3、参数:
str:要计算的字符串、列表、字典、元组等
相关推荐:《Python视频教程》
4、返回值:
字符串、列表、字典、元组等元素的长度
5、实例:
5.1、计算字符串的长度:
>>> s = "hello world php cn" >>> len(s) 18
5.2、计算列表的元素个数:
>>> l = ['h','e','l','l','o'] >>> len(l) 5
5.3、计算字典的总长度(即键值对总数):
>>> d = {'num':123,'name':"phpcn"} >>> len(p) 2
5.4、计算元组元素个数:
>>> t = ('w','o','r','l','d') >>> len(t) 5
Atas ialah kandungan terperinci python中len是什么意思. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!