A Python package for generating cases in a list.
Project description
casepy
casepy is a Python package for the advanced case combination and permutation calculation.
This package is designed to be possible to calculation of the case combination and permutation from the duplicated elements.
This package is designed to calculate combinations and permutations from the duplicate elements list. You can designate the number of elements you want to select. For instance, you can get all combinations and permutations of choosing 5 elements in a given list [1,1,2,3,4,5,5].
The combination and permutation list is sorted by numerical or alphabetical. Using the n-th-permutation or n-th-combination, you can get the n-th permutation or n-th combination of a given parameter without calculating 0-th to (n-1)-th case (current method).
Installation
You can install casepy via pip from PyPI:
$ pip install casepy
Quick Start
import casepy
element_list = [1, 2, 2, 3, 4]
all_combinations = casepy.all_combinations(element_list, 2)
# [[1, 2], [1, 3], [1, 4], [2, 2], [2, 3], [2, 4], [3, 4]]
all_permutations = casepy.all_permutations(test_list, 2)
# [[1, 2], [1, 3], [1, 4], [2, 1], [2, 2], [2, 3], [2, 4], [3, 1], [3, 2], [3, 4], [4, 1], [4, 2], [4, 3]]
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file casepy-0.2.0.tar.gz.
File metadata
- Download URL: casepy-0.2.0.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d323c4718e409b28a319d4597a497433efa7fffad4b90f370021b998dd67a88
|
|
| MD5 |
dbc921fe57b6809757d51003e36d0d2c
|
|
| BLAKE2b-256 |
4f0af8c88e57867f0995f18ee195db0c3f138593872213c49f4cdd7a0cec420a
|
File details
Details for the file casepy-0.2.0-py3-none-any.whl.
File metadata
- Download URL: casepy-0.2.0-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
437915cb8af2e11833dab9dd3ae7b2708424cd42d6ea2bc938686c85c7ce080f
|
|
| MD5 |
4203b1e9b2b510d16c90f1cc7cdddec3
|
|
| BLAKE2b-256 |
3b5ef99c4df22d53d743c2e60bc4ed26db1c4b6bc5dfeda8bf5101a4b93ac817
|