I have a list list1
(example) as shown below. It's the result of a function in my code.
Example:
list1 = ['2 String 2'] ['3 string 3']
Expected output from the above list is as below:
list1 = ['2 String 2', '3 string 3']
I'm stuck at this point.