Panda Datetime saat ini
today = pd.to_datetime("today")
Busy Boar
today = pd.to_datetime("today")
df['date_column'] = pd.to_datetime(df['datetime_column']).dt.date
# Changing object type column to datetime
df['date_col'] = pd.to_datetime(df.date_col)
# Creating new column with just the date
df['new_date_col'] = df['date_col'].dt.date
# credit to the Stack Overflow user in the source link
df['just_date'] = df['dates'].dt.date
pd.Timestamp('2014-01-23 00:00:00', tz=None).to_pydatetime()
[dt.to_datetime().date() for dt in df.dates]