I was digging into python functions I would like help understanding what I found.
>>> help(len)
Help on built-in function len in module builtins:
len(obj, /)
Return the number of items in a container.
I do not understand what the container would be. I used the following code.
>>> example = "art", "women",
>>> print(len(example))
2