I have 2 date type in one of python dataframe column, i want to all the data values into same format.
df = pd.DataFrame({'Date':['2016-06-01', '2016-06-01 10:00']})
print (df)
Date
0 2016-06-01
1 2016-06-01 10:00
I want both the date in same format as below.
Date
0 2016-06-01 00:00
1 2016-06-01 10:00
how to handle it using python.
Thanks