python中len()函数怎么使用

avatar
作者
筋斗云
阅读量:0

len()函数用于返回一个对象的长度或者元素的数量。它的使用方式如下:

  1. 对于字符串:
string = "Hello World" length = len(string) print(length)  # 输出:11 
  1. 对于列表、元组和集合等容器类型:
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 
  1. 对于字典:
my_dict = {'a': 1, 'b': 2, 'c': 3} length = len(my_dict) print(length)  # 输出:3 
  1. 对于其他对象,len()函数的使用取决于具体的对象类型。例如,在自定义类中,可以通过定义__len__()方法来控制len()函数的行为。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!