operator.length_hint(obj, default=0)
Return an estimated length for the object o. First try to return its actual length, then an estimate using object.__length_hint__()
, and finally return the default value.
New in version 3.4.
operator.length_hint(obj, default=0)
Return an estimated length for the object o. First try to return its actual length, then an estimate using object.__length_hint__()
, and finally return the default value.
New in version 3.4.
Please login to continue.