EN
Python - get array length
0
points
In this article, we would like to show you how to get array length in Python.
Quick solution:
array = [1, 3, 7, 5]
result = len(array)
print(result) # 4
Output:
4