We're a place where coders share, stay up-to-date and grow their careers.
len returns the length of an iterator or the __len__ method of a class if defined
iterator
__len__
>>> a = [1, 2, 3, 4] >>> len(a) 4 >>> a = "amalshaji" >>> len(a) 9 >>> a = (1, 2, 3, 4) >>> len(a) 4 >>> a = {1, 2, 3, 4} >>> len(a) 4 >>> class Amal: ... def __init__(self): ... pass ... def __len__(self): ... return 5 ... >>> a = Amal() >>> len(a) 5
Awesome, Thank you for sharing this.
len returns the length of an
iterator
or the__len__
method of a class if definedAwesome, Thank you for sharing this.