I know it's a pretty easy question, but I'm new in Python and need your help.
I have a list:
['232','43','1, 2, 3','5']
And I need to get:
['232','43','1','2','3','5']
That string with commas could be in any position in the list and I don't know how many such strings are present (the number of such strings may be changed). But in the string with commas there will always be exactly a single space after the comma, and there will never be a comma at the end of the string.
What is the easiest way to do that?