“Алфавитный порядок Python” Ответ

питон сортируется по длине и в алфавитном порядке

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

Алфавитный порядок 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

Ответы похожие на “Алфавитный порядок Python”

Вопросы похожие на “Алфавитный порядок Python”

Больше похожих ответов на “Алфавитный порядок Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования