I have a bunch of dates as follows:
df['Execution Date']
Out[123]: 
214     20180420
215     20180420
256     20180423
258     20180424
262     20180425
273     20180508
274     20180510
275     20180510
278     20180511
281     20180511
284     20180511
287     20180511
290     20180511
293     20180511
296     20180511
333     20180516
I implement df['Execution Date'] = df['Execution Date'].apply(lambda x: pd.to_datetime(str(x), format='%Y%m%d'))
When I check my console, the reformatting seems correct but in my Spyder Variable Explorer pane, I've the unnecessary 00:00:00 after each YYYY-MM-DD. 
This affects readability. Is there any workaround?