如何在 Python 中从月份编号中检索月份名称
假设您有月份编号(例如 3)并想要获取其月份名称相应的名称(例如,March)。使用 Python,有一个简单的解决方案可以完成此任务。
使用 Datetime 模块
Python 的 datetime 模块提供了一种获取月份名称的方法。使用方法如下:
<code class="python">import datetime # Get the current date mydate = datetime.datetime.now() # Retrieve the month name month_name = mydate.strftime("%B") # Print the month name print(month_name) # Output: December</code>
通过使用 %B 格式代码,您可以获得完整的月份名称。例如:
如果您想要月份名称的缩写,请使用 %b 代替%B。
其他资源
有关此主题的更多详细信息,请参阅 Python 文档网站:
[Python Datetime strftime()方法](https://docs.python.org/3/library/datetime.html#strftime)
[编辑]感谢@GiriB的富有洞察力的评论,您还可以使用使用 %b 格式代码进行更短的表示法,它返回缩写的月份名称:
<code class="python">print(mydate.strftime("%b")) # Output: Dec</code>
以上是如何在 Python 中从数字中获取月份名称?的详细内容。更多信息请关注PHP中文网其他相关文章!