python数组长度获取

2024-01-16 16:46:11

在Python中,可以使用len()函数来获取数组的长度。这适用于所有可迭代对象,包括列表、元组、字符串等。

以下是一个示例:

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_string = "Hello, World!"
length = len(my_string)
print(length)  # 输出:13

在上述示例中,使用len()函数获取了列表、元组和字符串的长度,并将结果打印出来。