云主机测评网云主机测评网云主机测评网

云主机测评网
www.yunzhuji.net

python中len函数怎么用

在Python中,len函数用于获取对象(如字符串、列表、元组等)的长度。使用方法为:len(对象)

在Python中,len()函数用于获取对象的长度或元素个数,它可以用于字符串、列表、元组、字典等可迭代对象,下面是len()函数的详细用法:

1、字符串长度:

“`python

string = "Hello, World!"

length = len(string)

print(length) # 输出:13

“`

2、列表长度:

“`python

list = [1, 2, 3, 4, 5]

length = len(list)

print(length) # 输出:5

“`

3、元组长度:

“`python

tuple = (1, 2, 3, 4, 5)

length = len(tuple)

print(length) # 输出:5

“`

4、字典长度:

“`python

dictionary = {"name": "John", "age": 25, "city": "New York"}

length = len(dictionary)

print(length) # 输出:3

“`

需要注意的是,len()函数只能用于可迭代对象,对于不可迭代的对象(如整数、布尔值等),使用len()函数会引发TypeError异常。

打赏
版权声明:主机测评不销售、不代购、不提供任何支持,仅分享信息/测评(有时效性),自行辨别,请遵纪守法文明上网。
文章名称:《python中len函数怎么用》
文章链接:https://www.yunzhuji.net/internet/180120.html

评论

  • 验证码