Longueur Array Python

fruits = ['mango', 'kiwi', 'grape', 'melon']
arr_length = len(fruits)
print(arr_length)
Foolish Fly