Konversi kolom di panda menjadi datetime
df['col'] = pd.to_datetime(df['col'])
Joyous Jay
df['col'] = pd.to_datetime(df['col'])
df['date_column'] = pd.to_datetime(df['datetime_column']).dt.date
formatted_df = df["Date"].dt.strftime("%m/%d/%y")
# 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
df['date_only'] = df['date_time_column'].dt.date
[dt.to_datetime().date() for dt in df.dates]