dev-notes/Python/Standard Library/itertools.md

73 lines
2.4 KiB
Markdown
Raw Normal View History

2021-01-31 11:05:37 +01:00
# Itertools Module
```py
# accumulate([1,2,3,4,5]) -> 1, 3(1+2), 6(1+2+3), 10(1+2+3+6), 15(1+2+3+4+5)
2021-09-20 19:35:32 +02:00
# accumulate(iter, func( , )) -> iter[0], func(iter[0] + iter[1]) + func(prev + iter[2]), ...
accumulate(iterable, func(_, _))
2021-01-31 11:05:37 +01:00
2021-09-20 19:35:32 +02:00
# iteratore restituisce elementi dal primo iterable,
2021-01-31 11:05:37 +01:00
# poi procede al successivo fino alla fine degli iterabili
2021-09-20 19:35:32 +02:00
# non funziona se l'iterable è uno solo
2021-01-31 11:05:37 +01:00
chain(*iterabili)
2021-09-20 19:35:32 +02:00
# concatena elementi del singolo iterable anche se contiene sequenze
chain.from_iterable(iterable)
2021-01-31 11:05:37 +01:00
2021-09-20 19:35:32 +02:00
# restituisce sequenze di lunghezza r a partire dall'iterable
2021-01-31 11:05:37 +01:00
# elementi trattati come unici in base al loro valore
2021-09-20 19:35:32 +02:00
combinations(iterable, r)
2021-01-31 11:05:37 +01:00
2021-09-20 19:35:32 +02:00
# # restituisce sequenze di lunghezza r a partire dall'iterable permettendo la ripetizione degli elementi
combinations_with_replacement(iterable, r)
2021-01-31 11:05:37 +01:00
2021-09-20 19:35:32 +02:00
# iteratore filtra elementi di data restituendo solo quelli che hanno
2021-01-31 11:05:37 +01:00
# un corrispondente elemento in selectors che ha valore vero
compress(data, selectors)
count(start, step)
2021-09-20 19:35:32 +02:00
# iteratore restituente valori in sequenza infinita
cycle(iterable)
2021-01-31 11:05:37 +01:00
2021-09-20 19:35:32 +02:00
# iteratore scarta elementi dell'iterable finché il predicato è vero
dropwhile(predicato, iterable)
2021-01-31 11:05:37 +01:00
2021-09-20 19:35:32 +02:00
# iteratore restituente valori se il predicato è falso
filterfalse(predicato, iterable)
2021-01-31 11:05:37 +01:00
# iteratore restituisce tuple (key, group)
# key è il criterio di raggruppamento
2021-09-20 19:35:32 +02:00
# group è un generatore restituente i membri del gruppo
groupby(iterable, key=None)
2021-01-31 11:05:37 +01:00
2021-09-20 19:35:32 +02:00
# iteratore restituisce slice dell'iterable
2021-01-31 11:05:37 +01:00
isslice(iterable, stop)
isslice(iterable, start, stop, step)
2021-09-20 19:35:32 +02:00
# restituisce tutte le permutazioni di lunghezza r dell'iterable
permutations(iterable, r=None)
2021-01-31 11:05:37 +01:00
# prodotto cartesiano degli iterabili
# cicla iterabili in ordine di input
# [product('ABCD', 'xy') -> Ax Ay Bx By Cx Cy Dx Dy]
# [product('ABCD', repeat=2) -> AA AB AC AD BA BB BC BD CA CB CC CD DA DB DC DD]
product(*iterabili, ripetizioni=1)
# restituisce un oggetto infinite volte se ripetizioni non viene specificato
repeat(oggetto, ripetizioni)
2021-09-20 19:35:32 +02:00
# iteratore computa func(iterable)
# usato se iterable è sequenza pre-zipped (seq di tuple raggruppanti elementi)
starmap(func, iterable)
2021-01-31 11:05:37 +01:00
2021-09-20 19:35:32 +02:00
# iteratore restituente valori da iterable finché predicato è vero
takewhile(predicato, iterable)
2021-01-31 11:05:37 +01:00
2021-09-20 19:35:32 +02:00
# restituisce n iteratori indipendenti dal singolo iterable
tee(iterable, n=2)
2021-01-31 11:05:37 +01:00
2021-09-20 19:35:32 +02:00
# produce un iteratore che aggrega elementi da ogni iterable
2021-01-31 11:05:37 +01:00
# se gli iterabili hanno lunghezze differenti i valori mancanti sono riempiti secondo fillervalue
2021-09-20 19:35:32 +02:00
zip_longest(*iterable, fillvalue=None)
2021-01-31 11:05:37 +01:00
```