You can use this to create the dataframe:
xyz = pd.DataFrame({\'release\' : [\'7 June 2013\', \'2012\', \'31 January 2013\', \'F
Try reversing the result.
dataframe[['year','month','day']] = dataframe['release'].str.rsplit(expand=True).reverse()