معرفی شرکت ها


enumerate_skip-1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

enumerate extended to support manual advancement or skipping of the index
ویژگی مقدار
سیستم عامل -
نام فایل enumerate_skip-1.0
نام enumerate_skip
نسخه کتابخانه 1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Wieland Hoffmann
ایمیل نویسنده themineo@gmail.com
آدرس صفحه اصلی http://github.com/mineo/enumerate_skip
آدرس اینترنتی https://pypi.org/project/enumerate_skip/
مجوز MIT
=============================== enumerate_skip =============================== This package provides 2 iterators, `enumerate_skip` and `enumerate_manual`, that extend the behaviour of the standard libraries `enumerate` a bit. `enumerate_skip` has been extended with a `skip` method that makes sure the next `index` yielded is the same as the current one. The word `skip` might not make sense at first, but this function was written because I needed to not handle some values yielded by an iterator, like:: for index, obj in enumerate(...): if obj.has_some_attr(): continue # do something with object and index here If `index` in that example was printed to the user (or something similar), there would be gaps. Using `enumerate_skip` instead, the above example could be written as:: it = enumerate_skip(...) for index, obj in it: if obj.has_some_attr(): it.skip() continue # do something with object and index here `enumerate_manual` works the other way around: you have to manually call `advance` on it to increment the `index`:: it = enumerate_manual(...) for index, obj in it: if obj.has_some_attr(): continue # do something with object and index here it.advance()


نحوه نصب


نصب پکیج whl enumerate_skip-1.0:

    pip install enumerate_skip-1.0.whl


نصب پکیج tar.gz enumerate_skip-1.0:

    pip install enumerate_skip-1.0.tar.gz