get day from date pandas code example
Example 1: python date get day
import datetime
dt = datetime.datetime.today()
year = dt.year
month = dt.month
day = dt.day
Example 2: get today's date pandas
today = pd.to_datetime("today")
import datetime
dt = datetime.datetime.today()
year = dt.year
month = dt.month
day = dt.day
today = pd.to_datetime("today")