[Python] Confronto due stringhe "dettagliato"

Pietro Battiston battiston a mail.dm.unipi.it
Ven 11 Gen 2008 15:30:31 CET


Cristian Re ha scritto:
> Grazie devo approfondire questa SequenceMatcher, non la conoscevo.

Se vuoi evitare una libreria a costo di introdurre dello schifo, è pur
sempre una riga :-)

>>> (lambda x, y : len([x[i] for i in range(min(len(x),len(y))) if x[i]
== y[i]])) (list('ciao'), list('cibo'))
3

Pietro


More information about the Python mailing list