Answers for "converting month number n a column to month name in python"

0

python take the month of date in new column

#pandas datetimeindex docs: https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DatetimeIndex.html
df['month'] = pd.DatetimeIndex(df['birth_date']).month
df.head()
Posted by: Guest on November-29-2020
0

converting month number to month name python

months_in_year = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']
date = '2021-11-21 11:22:03'
month = date.dt.month
print(month)
#Output
11

month_name = months_in_year [month - 1]
print(month_name)
#Output
November
Posted by: Guest on September-01-2021

Code answers related to "converting month number n a column to month name in python"

Python Answers by Framework

Browse Popular Code Answers by Language