Returns the length of a string or list.
For strings, returns the number of characters. For lists, returns the number of elements.
len('hello') → 5 len('') → 0 len(name) → 5 (when name is 'Alice')