list1 = 'it is, a good,day'
I need to separate all the parts of the string by the comma : 'it is'
, 'a good'
and 'day'
and then place 'ouf'
in between each part so it could print it is ouf a good ouf day
Note the space after the coma at ', a good'
is there also a way to delete the space only after the comma?