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.2.1.tar.gz (2.7 kB view details)

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for ranking-0.2.1.tar.gz
Algorithm Hash digest
SHA256 aa0ee991607e1e49205c63c8720ae4930dfcbc233056d435aca2346d5b959818
MD5 e5483b65740a1991637282c8dd4f661f
BLAKE2b-256 1b508ba3f12ba8973a182f37f594a8eff815ecbe1c547cd0e73a99c0947807ac

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