9
Quando utilizzo la funzione bisect_left()
, perché non si ottiene index
dell'elemento, ma invece index + 1
?Bisetto di un elenco Python e ricerca dell'indice
import bisect
t3 = ['carver', 'carvers', 'carves', 'carving', 'carvings']
print bisect.bisect(t3, 'carves') # 3
print bisect.bisect(t3, 'carving') # 4
print bisect.bisect(t3, 'carver') # 1