python字符串排序_如何在Python中对日期字符串进行排序?

你还可以利用日历模块:from calendar import month_name

months = list(month_name)

def parser (text):

"""Parses 'englishmonthname_whitespace_day-number' into string 'monthNR.dayNr'.

Will pad a zero to allow for string based sorting."""

try:

month,day = text.split()

monthAsIdx = months.index(month.strip())

return '{:02d}.{:02d}'.format(monthAsIdx,int(day)) # return index in list.days

except (ValueError, IndexError): # ValueError if not enough elements in string,

# IndexError if not in list of month names

return "99.99" # put last - all errors are put last w/o specific reordering

dates = ['TooFew', 'EnoughBut NotInList', 'March 1', 'March 9', 'April 14', 'March 12']

for n in dates:

print(parser(n))

sortedDates = sorted(dates, key=lambda x: parser(x))

print(sortedDates)

输出:# result of parser()

99.99

99.99

03.01

03.09

04.14

03.12

# sorted by key/lambda

['March 1', 'March 9', 'March 12', 'April 14', 'TooFew', 'EnoughBut NotInList']

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值