I have a file in pickle format that I import to jupyter notebook using:
news_data = pd.read_pickle('/Users/Final/Data/news_articles cleaned.pickle')
Data has two columns as shown in this picture
The Date column is in the format: Weekday Date Month Year eg. Monday 3rd January 2011
How can I change this format to: Year-Month-Date eg. 2011-01-03 ?