阅读量:0
len()函数用于返回一个对象的长度或者元素的数量。它的使用方式如下:
- 对于字符串:
string = "Hello World" length = len(string) print(length) # 输出:11
- 对于列表、元组和集合等容器类型:
my_list = [1, 2, 3, 4] length = len(my_list) print(length) # 输出:4 my_tuple = ('a', 'b', 'c') length = len(my_tuple) print(length) # 输出:3 my_set = {1, 2, 3, 4} length = len(my_set) print(length) # 输出:4
- 对于字典:
my_dict = {'a': 1, 'b': 2, 'c': 3} length = len(my_dict) print(length) # 输出:3
- 对于其他对象,len()函数的使用取决于具体的对象类型。例如,在自定义类中,可以通过定义
__len__()
方法来控制len()函数的行为。