Primary
len() ⚬ᵖʸ|Documentation|1st|20251021002143-00-⌔
Built-in Functions — Python 3 documentation#len
len(object,/)Return the length (the number of items) of an object. The argument may be a sequence (such as a string, bytes, tuple, list, or range) or a collection (such as a dictionary, set, or frozen set).
CPython implementation detail:
lenraisesOverflowErroron lengths larger thansys.maxsize, such asrange(2 ﹡﹡ 100).Printed 2026-06-28.
(echo:: @ ᯤ)
Link to original
Secondary
• • •