“Ordem alfabética de Python” Respostas de código

Python classifica por comprimento e alfabeticamente

the_list.sort() # sorts normally by alphabetical order
the_list.sort(key=len, reverse=True) # sorts by descending length
Mysterious Mongoose

Ordem alfabética de Python

my_str = "you can just put in word in one sentence like this"
my_str = input("Enter a string: ")
words = [word.lower() for word in my_str.split()]
words.sort()
print("The sorted words are:")
for word in words:
   print(word)
Handsome Hummingbird

Respostas semelhantes a “Ordem alfabética de Python”

Perguntas semelhantes a “Ordem alfabética de Python”

Mais respostas relacionadas para “Ordem alfabética de Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código