gpt4 book ai didi

python - 比较多个也包含数字的单词,并将它们设置为升序

转载 作者:行者123 更新时间:2023-12-01 07:43:54 26 4
gpt4 key购买 nike

我想比较不同的单词。每个单词还包含一个数字,我需要根据它们包含的数字的值将单词按升序排列。例如:句子=“T4est is2 Thi1s 3a”需要按以下顺序放置:'Thi1s is2 3a T4est'

我试图找到每个单词中数字的值,然后比较每个数字的值并将单词按正确的顺序放入列表中。目前,我只能找到一个单词是否包含数字。返回 true 或 false。

import string

sentence = " T4est is2 Thi1s 3a "

def order(sentence):
words = sentence.split()
for word in words:
if word.isdigit():
return word

print (order(sentence))

例如:句子=“T4est is2 Thi1s 3a”需要按以下顺序放置:'Thi1s is2 3a T4est'

最佳答案

您可以使用sorted使用您的 lambda 函数。

import re
sentence = " T4est is2 Thi1s 3a "
words = sentence.strip().split(" ")
result = sorted(words, key=lambda x: int(re.search("\d+", x).group()))
# Result here is ['Thi1s', 'is2', '3a', 'T4est']
result = " ".join(result)
print(result)

这将返回:

"Thi1s is2 3a T4est"

关于python - 比较多个也包含数字的单词,并将它们设置为升序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56561052/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com