Home >Backend Development >Python Tutorial >How to Retrieve Month Name from Its Number in Python?
How to Get Month Name from Number in Python
Obtaining the month name from its corresponding number is a common task in programming. For example, if you have the month number 3, you might want to convert it to the string "March". Here's how to accomplish this in Python:
To retrieve the month name, you can utilize the datetime module. Create a datetime object by obtaining the current time using the datetime.datetime.now() function. Next, use the strftime() method to convert the datetime object to a string. Within the strftime() method, specify the "%B" format code to obtain the full month name, such as "March".
Example:
<code class="python">import datetime mydate = datetime.datetime.now() mydate.strftime("%B")</code>
Output:
December
Additionally, you can use the "%b" format code to obtain the abbreviated month name, such as "Dec".
Example:
<code class="python">mydate.strftime("%b")</code>
Output:
Dec
For more detailed information, refer to the Python documentation on [strftime format codes](https://docs.python.org/3/library/datetime.html#strftime-and-strptime-format-codes).
The above is the detailed content of How to Retrieve Month Name from Its Number in Python?. For more information, please follow other related articles on the PHP Chinese website!