Array Len Python Code Example
Example 1: size array python
size = len(myList)
Example 2: python get array length
# To get the length of a Python array, use 'len()' a = arr.array(‘d’, [1.1, 2.1, 3.1]) len(a) # Output: 3
Example 3: find array length in python
a=arr.array('d', [1.1 , 2.1 ,3.1] ) len(a)
Example 4: somma array python
#sum the elements in a list x=[1,2,3,4] sum(x)
Example 5: python3 array
Array = [1,2,3,4,5]
Comments
Post a Comment