# It doesn't matter what is the type of the item # It will count the number of items in the list x = [1, 2, 5.67, 2.45, 'John', 'Pat', True, False] length = len(x) # This gives us an integer print('number of items in the list is:', length)