gpt4 book ai didi

python - 将数组数字元素交换为其他数组中的字符串

转载 作者:太空宇宙 更新时间:2023-11-03 16:35:31 25 4
gpt4 key购买 nike

我有两个数组:

months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]
current_month = datetime.date.today().month
last_months = [(current_month - i - 1) % len(months) + 1 for i in range(7)]

我要兑换last_months数组数字到字符串 months 。我怎样才能做到这一点?

提前感谢您的帮助。

最佳答案

您可以将 last_months 的索引器部分包装在数组查找中。

[months[(current_month - i - 1) % len(months) + 1] for i in range(7)]

关于python - 将数组数字元素交换为其他数组中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37255168/

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