8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
zip
__len__
Getting the length of an empty zip object (e.g. len(zip())) raises
len(zip())
ValueError: min() iterable argument is empty
since the length is computed as the minimum length among the iterators, but no default value is set.