Suppose I have this following list
[('2015-2016-regular', '2016-playoff'), ('2016-2017-regular', '2017-playoff'), ('2017-2018-regular',)]
which represents the two previous complete NHL years and the current one.
I would like to convert it so that It will give me
[('Regular Season 2015-2016 ', 'Playoff 2016'), ('Regular Season 2016-2017', 'Playoff 2017'), ('Regular Season 2017-2018 ',)]
My English is bad and those writing will be used as titles. Are there any errors in the last list?
How could I construct a function which will do such conversions in respecting the 80 characters long norm?