Similar to Convert string representation of list to list but consider the elements in the list are not encased in quotes, e.g
x = '[a, b, c, ab, adc, defg]'
How could you convert this to a list of string elements in python?
['a', 'b', 'c', 'ab', 'adc', 'defg']