I need to add a timestamp to a dataframe with the following settings:
from datetime import datetime
date_rng = pd.date_range(start='1/1/2020', end='1/21/2020',
periods=len(df))
I would like to know how to discard the miliseconds terms since I need to convert to this format Jan 1, 1400 00:00:00
later in Quicksight.
Thank you!