Length¶ Example: a = [1, 2, 3, 4] print(len(a)) # prints out 4 a = [] print(len(a)) # empty list has the length of 0