how to delete the seconds from time in pandas code example
Example: pandas remove time from date
# If opening_date is currently a timestamp: 2021-01-09 00:00:00
opening_date = pd.to_datetime(opening_date).date()
print(opening_date)
# Result: 2021-01-09