I have a string.
s = \'1989, 1990\'
I want to convert that to list using python & i want output as,
s = [\'1989\', \'19
Call the split function:
split
myList = s.split(', ')