Skip to main content

Ranking collection

Project description

This library provides Ranking iterator to assign rank to each values and various strategies for assigning rankings.

>>> sorted_scores = [100, 90, 90, 80, 70]
>>> for rank, score in Ranking(sorted_scores):
...     print '%d. %d' % (rank + 1, score)
1. 100
2. 90
2. 90
4. 80
5. 70
>>> for rank, score in Ranking(sorted_scores, DENSE):
...     print '%d. %d' % (rank + 1, score)
1. 100
2. 90
2. 90
3. 80
4. 70

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ranking-0.1.1.tar.gz (2.8 kB view details)

Uploaded Source

File details

Details for the file ranking-0.1.1.tar.gz.

File metadata

  • Download URL: ranking-0.1.1.tar.gz
  • Upload date:
  • Size: 2.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for ranking-0.1.1.tar.gz
Algorithm Hash digest
SHA256 0b7b74a348ea9854c30ccc2b827f20d952536d0b61d6ed2c119cd2e87adbaf12
MD5 fad0692dc6403c3ca20302d33f43e6fb
BLAKE2b-256 a1e63c5a38fa2e23fef67288f40bb8864f3115ed9ab9304a97af85c916f4aaaa

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page