Python中,可以使用内置函数len()来计算数组的元素个数。以下是一个示例:
len()
arr = [1, 2, 3, 4, 5] count = len(arr) print(count) # 输出:5
使用len()函数可以计算任何类型的数组、列表、元组、字符串等的元素个数。