Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to convert month to number in python

import calendar

months = {month: index for index, month in enumerate(calendar.month_abbr) if month}

# {'Jan': 1, 'Feb': 2, 'Mar': 3, 'Apr': 4, 'May': 5, 'Jun': 6, 'Jul': 7, 'Aug': 8, 'Sep': 9, 'Oct': 10, 'Nov': 11, 'Dec': 12}
Comment

python month number from date

import datetime
date = '2021-05-21 11:22:03'
datem = datetime.datetime.strptime(date, "%Y-%m-%d %H:%M:%S")
print(datem.day)        # 25
print(datem.month)      # 5
print(datem.year)       # 2021
print(datem.hour)       # 11
print(datem.minute)     # 22
print(datem.second)     # 3
Comment

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
Comment

PREVIOUS NEXT
Code Example
Python :: python check if string is number reges 
Python :: last element in list py 
Python :: python convert dictionary to pandas dataframe 
Python :: look through dict 
Python :: Column names reading csv file python 
Python :: display youtube video in jupyter notebook 
Python :: euclidean division in python 
Python :: convert a data frame column values to list 
Python :: how to generate random normal number in python 
Python :: how to create a label in tkinter 
Python :: python pil to greyscale 
Python :: pandas new column from others 
Python :: python regex cheat sheet 
Python :: how to run python file from cmd in dockerfile 
Python :: tkinter button command with arguments 
Python :: pyodbc sql save pandas dataframe 
Python :: dataframe choose random 
Python :: python average 
Python :: django template tag multiple arguments 
Python :: list to sentence python 
Python :: how to close a webpage using selenium driver python 
Python :: how to get only certain columns in pandas 
Python :: how do i check if a django queryset is empty 
Python :: pytorch l2 regularization 
Python :: numpy matrix 
Python :: save and load model pytorch 
Python :: left click pyautogui 
Python :: unable to get local issuer certificate python 
Python :: how to check whole number in python 
Python :: python datetime format 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =