“Orden alfabética de Python” Código de respuesta

Python ordenar por longitud y alfabéticamente

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

Orden 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

Respuestas similares a “Orden alfabética de Python”

Preguntas similares a “Orden alfabética de Python”

Más respuestas relacionadas con “Orden alfabética de Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código