Let's find out how we can count the elements in lists.
We use the len() instruction with the list name in parentheses to get the number of elements in a list.
We can use print() to display the length of a list in the console.
>>> aa = [1,2,3,1,2,3,1,2,3,1,2,3,1,2,3]
>>> len(aa)
15