gpt4 book ai didi

python - 如何在python中对字母数字集进行排序

转载 作者:IT老高 更新时间:2023-10-28 21:45:14 26 4
gpt4 key购买 nike

我有一套

set(['booklet', '4 sheets', '48 sheets', '12 sheets'])

排序后我希望它看起来像

4 sheets,
12 sheets,
48 sheets,
booklet

有什么建议

最佳答案

Jeff Atwood讨论自然排序,并举例说明在 Python 中实现它的一种方法。这是我的变化:

import re 

def sorted_nicely( l ):
""" Sort the given iterable in the way that humans expect."""
convert = lambda text: int(text) if text.isdigit() else text
alphanum_key = lambda key: [ convert(c) for c in re.split('([0-9]+)', key) ]
return sorted(l, key = alphanum_key)

这样使用:

s = set(['booklet', '4 sheets', '48 sheets', '12 sheets'])
for x in sorted_nicely(s):
print(x)

输出:

4 sheets
12 sheets
48 sheets
booklet

这种方法的一个优点是它不仅仅在字符串用空格分隔时起作用。它也适用于其他分隔符,例如版本号中的句点(例如 1.9.1 在 1.10.0 之前)。

关于python - 如何在python中对字母数字集进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2669059/

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