As a novice I am trying to understand a particular part of len() .
friends = ["Alice", "Bob", "Carl", "John"]
print(len(friend))                         # answer = 4 (number of items in list)
friend.extend([1, 2, 3])  
print(len(friend))                         # answer = 7 (where does the "7" come from and what is it 
                                           # telling me? 
 
     
    