Counts until condition. Infinite counting is also supported.
Project description
Overview
Counts until condition. Infinite counting is also supported.
Installation
To install upcounting, you can use pip. Open your terminal and run:
pip install upcounting
Implementation
def count_up(start=0, stop=None, step=1):
ans = start
while True:
if stop is None:
pass
elif callable(stop):
if stop(ans):
break
else:
if ans >= stop:
break
yield ans
ans += step
License
This project is licensed under the MIT License.
Links
Credits
Author: Johannes
Thank you for using upcounting!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
upcounting-1.0.2.tar.gz
(2.6 kB
view hashes)
Built Distribution
Close
Hashes for upcounting-1.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddb06101c98b659521115eed8b61bf86765cc2790d0ecad914069d78faca3afd |
|
MD5 | 0cf3085cb3b9fa0ad19029be62c47bb2 |
|
BLAKE2b-256 | e212b930a1d6fcfaa840b6897e294f4a133df9f3aa8903a91f6e83541bdebac1 |