根据日期对包含字典的列表进行排序

发布于 2025-01-11 19:13:41 字数 466 浏览 0 评论 0原文

我想使用 DSA 根据“日期”值对下面提供的列表进行排序,而不是使用 Python 中的任何外部/内部模块。我尝试过,但无法在这里提出任何可行的解决方案。 请帮助我。

a = [{"date":[14,1,2020],"stockValue":-0.57357144},
     {"date":[9,2,2021],"stockValue":-0.66407406},
     {"date":[10,2,2020],"stockValue":-0.62166667}]

预期的答案如下。

a = [{"date":[14,1,2020],"stockValue":-0.57357144},
     {"date":[10,2,2020],"stockValue":-0.62166667},
     {"date":[9,2,2021],"stockValue":-0.66407406}]

I want to sort the below-provided list based on the 'date' value using DSA and not any external/internal modules in Python. I tried but am unable to come up with any working solution here.
Kindly help me with that.

a = [{"date":[14,1,2020],"stockValue":-0.57357144},
     {"date":[9,2,2021],"stockValue":-0.66407406},
     {"date":[10,2,2020],"stockValue":-0.62166667}]

The expected answer will be as below.

a = [{"date":[14,1,2020],"stockValue":-0.57357144},
     {"date":[10,2,2020],"stockValue":-0.62166667},
     {"date":[9,2,2021],"stockValue":-0.66407406}]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉墨 2025-01-18 19:13:41
a.sort(key=lambda x: x['date'], reverse=True)
a.sort(key=lambda x: x['date'], reverse=True)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文