Libreria per ordinare testi stringhe e liste
Project description
catalogpy :)
catalogpy è una libreria che ti permette di ordinare le tue stringhe, e mantenere il tuo codice più pulito!
Installazione/Install
Come installarlo? Semplice basta usare pip! How to dowload it? It's simple just use pip!
pip install catalogpy
Funzionalità e Utilizzo Ogni funzione è progettata per eseguire un'operazione specifica. Puoi importare e usare solo le funzioni di cui hai bisogno. Funtionalities and utility Each function is designed to execute an a specific operation. You can import and use only the function that you need.
elencation(words, min, max, text)
Ordina le parole in ordine alfabetico e le restituisce in una stringa, filtrate per lunghezza.
Order the word in alphabetical order and return them into a string, you can also filter the word by lenght.
words = ["mela", "kiwi", "banana", "arancia"]
elencation(words, min=4, max=6)
# Output:
# ['kiwi', 'mela']
ordination(start, words, min, max, text)
Restituisce una lista di stringhe in ordine alfabetico numerandole. Modificando il parametro start è possibile decidere da che numero iniziare a numerare la lista di parole di default è impostato su 1.
Return a list of string in alphabetical order numbering them. If you modify the start parameter it's possible modify from what number start the counter.
words = ["mela, "kiwi", "banana", "arancia"]
print(ordination(4, words, min=4, max=6)
# Output:
# ['4. kiwi', '5. mela']
unique_words(ord, words, min, max, text)
Restituisce un elenco di parole uniche, rimuovendo i duplicati. Le parole vengono filtrate e se vuoi usando il parametro ord puoi decidere se ordinare in ordine alfabetico le parole di default il parametro è su False.
Return an list of unique words remove al the duplicates. The words are filtered and if you want with the ord parameter you can order in alphabetical order the words, the parameter is False as default.
words = ["gatto", "cane", "gatto", "topo", "cane"]
unique_words(True, words)
# Output:
# ['cane', 'gatto', 'topo']
#Licenza Questo progetto è distribuito sotto licenza GNU GPL v3. Consulta file LICENSE per dettagli.
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 catalogpy-1.9.3.tar.gz.
File metadata
- Download URL: catalogpy-1.9.3.tar.gz
- Upload date:
- Size: 16.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a36cabde62ee02b9fc0392c970ddd64fe1d9e19938fd34b58c24e440a5efeb8b
|
|
| MD5 |
bdce9410147be4671e5c9b408990d477
|
|
| BLAKE2b-256 |
c03075a06eb997b09e67b2d220f9488df792603127ba8f4fe02f7b00ea424f35
|
File details
Details for the file catalogpy-1.9.3-py3-none-any.whl.
File metadata
- Download URL: catalogpy-1.9.3-py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a967348f127945a8337a6b750b200c489e270decd5cdac3a8de3800ca05447ab
|
|
| MD5 |
17c9d2b451b4d4393f3f6f6e191b80a4
|
|
| BLAKE2b-256 |
40f984a20a6ee5203b0a326a1bee54f4cc8a6f192703c40d94bb2238473cac6e
|