在Python中,len()
函数用于获取字符串、列表、元组、字典等对象的长度或元素数量。下面是一些len()
函数在Python中的用法示例:
- 获取字符串的长度:
string = "Hello, World!"
length = len(string)
print(length) # 输出:13
- 获取列表的长度:
my_list = [1, 2, 3, 4, 5]
length = len(my_list)
print(length) # 输出:5
- 获取元组的长度:
my_tuple = (1, 2, 3, 4, 5)
length = len(my_tuple)
print(length) # 输出:5
- 获取字典的键值对数量(即字典中元素的数量):
my_dict = {"name": "Alice", "age": 25, "city": "New York"}
length = len(my_dict)
print(length) # 输出:3
需要注意的是,在使用len()
函数时,传入的参数应该是一个可迭代对象。