Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- """Scrivete un programma che legga una parola e stampi tutte le sottostringhe, ordinate per lunghezza. """
- s=input("Dimmi una parola: ")
- sottostringhe = [s[i:j] for i in range(len(s)) for j in range(i+1,len(s)+1)] #genero sottostringhe
- sottostringhe.sort(key=len) #sorto le sottostringhe per lunghezza
- #print(*sottostringhe) unpacking, stampa con spazi e non a capo
- for x in sottostringhe: print(x)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement