# 示例代码:len 函数在 Python 中的用法
# 1. 获取字符串的长度
string = "Hello, World!"
length_of_string = len(string)
print(f"字符串 '{string}' 的长度是: {length_of_string}")
# 2. 获取列表的长度
list_example = [1, 2, 3, 4, 5]
length_of_list = len(list_example)
print(f"列表 {list_example} 的长度是: {length_of_list}")
# 3. 获取元组的长度
tuple_example = (1, 2, 3, 'a', 'b', 'c')
length_of_tuple = len(tuple_example)
print(f"元组 {tuple_example} 的长度是: {length_of_tuple}")
# 4. 获取字典的长度(返回键的数量)
dict_example = {'name': 'Alice', 'age': 25, 'city': 'Beijing'}
length_of_dict = len(dict_example)
print(f"字典 {dict_example} 的长度是: {length_of_dict}")
# 5. 获取集合的长度
set_example = {1, 2, 3, 4, 5}
length_of_set = len(set_example)
print(f"集合 {set_example} 的长度是: {length_of_set}")
len()
函数用于返回对象(如字符串、列表、元组、字典、集合等)的长度或元素个数。len()
返回字符的数量。len()
返回元素的数量。len()
返回键的数量。len()
返回元素的数量。上一篇:python 数组操作
下一篇:python的特性
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站