>>> df
Time
5/10/2017 (135) 01:05:03
5/11/2017 (136) 04:05:06
Given an input date such as this in a DataFrame, how would I delete the Julian Date, (135) and (136), and remove the whitespace in the middle, so that the output looks like:
>>> df
Time
5/10/2017 01:05:03
5/11/2017 04:05:06
I've tried:
df['Time'].replace('(135)','', regex=True, inplace=True)
which outputs:
>>> df
Time
0 5/10/2017 () 01:05:03
I was wondering what I'm doing wrong here.