在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异常。
原创文章,作者:未希,如若转载,请注明出处:https://www.kdun.com/ask/647026.html
本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。
发表回复